.home_products {
  overflow: hidden;
  padding: 11.8rem 0 7rem;
  background-color: var(--bg);
}
.home_products .head .tcon p {
  max-width: 90rem;
}
.home_products .swiper_box {
  margin-top: 2.5rem;
}
.home_products .swiper_btns {
  justify-content: center;
  margin-top: 2.5rem;
}
.home_products .app_product_list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 1.5rem 1.5rem 3.3rem;
  border-radius: 2rem;
  background-color: #fff;
  transition: all 0.3s;
}
.home_products .app_product_list a:hover {
  box-shadow: 0 2rem 4rem rgba(208, 211, 221, 0.45);
}
.home_products .app_product_list .img {
  position: relative;
  width: 100%;
  height: 21.24rem;
}
.home_products .app_product_list .img .bg {
  border-radius: 1.2rem;
  object-fit: cover;
}
.home_products .app_product_list .img .pd {
  position: absolute;
  left: 48%;
  top: 7.17rem;
  width: 18.1rem;
  height: 18.1rem;
  object-fit: contain;
}
.home_products .app_product_list a:hover .img .pd {
  transform: translateY(-0.6rem);
}
.home_products .app_product_list .cat,
.home_products .app_product_list .title,
.home_products .app_product_list .desc,
.home_products .app_product_list .btn_i {
  margin-left: 1.5rem;
  margin-right: 0.5rem;
}
.home_products .app_product_list .cat {
  margin-top: 2.54rem;
  padding: 0 1.2rem;
  border-radius: 0.6rem;
  background-color: #ebf2fb;
  color: var(--blue);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 3.16rem;
  text-transform: uppercase;
}
.home_products .app_product_list .cat.green {
  background-color: #eef6e2;
  color: #5e9414;
}
.home_products .app_product_list .title {
  margin-top: 1.5rem;
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.3;
  transition: all 0.3s;
}
.home_products .app_product_list a:hover .title {
  color: var(--primary);
}
.home_products .app_product_list .desc {
  margin-top: 1.6rem;
  margin-bottom: auto;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 2.6rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home_products .app_product_list .btn_i {
  margin-top: 5.1rem;
  font-size: 1.8rem;
}
.home_industries {
  padding: 12.29rem 0px 12.8rem;
  background-color: #fff;
}
.home_industries .head .tcon p {
  max-width: 80rem;
  margin-top: 2.25rem;
}
.home_industries .head .btn_box {
  flex-shrink: 0;
  margin-bottom: 0.77rem;
}
.home_industries .list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 6.97rem;
}
.home_industries .list li:nth-child(-n+7) {
  border-bottom: 1px solid #e4e8ed;
}
.home_industries .list a {
  display: block;
  max-width: 19.28rem;
  height: 18.99rem;
  margin: 0px auto;
  padding: 4rem 1rem 0px;
  text-align: center;
  border-radius: 1.291rem;
  transition: 0.3s;
}
.home_industries .list .icon {
  display: block;
  width: 6.8rem;
  height: 6.8rem;
  margin: 0px auto;
}
.home_industries .list .icon img {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.home_industries .list .title {
  margin-top: 1rem;
  color: #232323;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
  transition: 0.3s;
}
.home_industries .list .title h3 {
  font-size: inherit;
  font-weight: inherit;
}
.home_industries .list:not(:hover) li.active a,
.home_industries .list a:hover {
  background-color: var(--primary);
  box-shadow: 0px 2rem 4rem rgba(208, 211, 221, 0.45);
}
.home_industries .list:not(:hover) li.active .icon img,
.home_industries .list a:hover .icon img {
  filter: brightness(0) invert(1);
}
.home_industries .list:not(:hover) li.active .title,
.home_industries .list a:hover .title {
  color: #fff;
  text-decoration: underline;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .home_industries .list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem 0px;
  }
  .home_industries .list li:nth-child(-n+7) {
    border-bottom: none;
  }
}

@media screen and (max-width: 768px) {
  .home_products {
    padding: 50px 0 50px;
    overflow: hidden;
  }
  .home_products .swiper_box {
    margin-top: 20px;
  }
  .home_products .swiper_content {
    overflow: unset;
  }
  .home_products .swiper_btns {
    margin-top: 20px;
  }
  .home_products .app_product_list a {
    padding: 10px 10px 20px;
    border-radius: 12px;
  }
  .home_products .app_product_list .img {
    height: auto;
    aspect-ratio: 299 / 212;
  }
  .home_products .app_product_list .img .pd {
    top: 34%;
    width: 60%;
    height: auto;
    aspect-ratio: 1;
  }
  .home_products .app_product_list .cat,
  .home_products .app_product_list .title,
  .home_products .app_product_list .desc,
  .home_products .app_product_list .btn_i {
    margin-left: 6px;
    margin-right: 6px;
  }
  .home_products .app_product_list .cat {
    margin-top: 16px;
    font-size: 12px;
    line-height: 26px;
    padding: 0 10px;
  }
  .home_products .app_product_list .title {
    font-size: 17px;
    margin-top: 10px;
  }
  .home_products .app_product_list .desc {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 8px;
  }
  .home_products .app_product_list .btn_i {
    margin-top: 20px;
    font-size: 14px;
  }
  .home_industries {
    padding: 50px 0px;
  }
  .home_industries .head .tcon p {
    margin-top: 10px;
  }
  .home_industries .head .btn_box {
    margin: 0px;
  }
  .home_industries .list {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 30px;
  }
  .home_industries .list li:nth-child(-n+7) {
    border-bottom: none;
  }
  .home_industries .list a {
    max-width: none;
    height: 100%;
    min-height: 118px;
    padding: 16px 4px 12px;
    border-radius: 10px;
    background-color: var(--bg);
  }
  .home_industries .list .icon {
    width: 44px;
    height: 44px;
  }
  .home_industries .list .title {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.35;
  }
  .home_industries .list .title br {
    display: none;
  }
}
