#cat_page {
  background: #f8f8fb;
  padding: 60px 0;
}

#cat_page .container .title_cat {
  font-size: 32px;
  font-weight: 700;
  color: #3f3f3f;
  text-transform: uppercase;
  margin-bottom: 40px;
}

#cat_page .container .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#cat_page .container .top .summary {
  width: 70%;
  text-align: justify;
  color: #5c5c5c;
  font-size: 16px;
}

#cat_page .container .top .summary p {
  margin-bottom: 0;
}

#cat_page .container .top .sub {
  width: 30%;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#cat_page .container .top .sub p {
  margin-bottom: 0;
}

#cat_page .container .top .sub .title_2 {
  font-size: 14px;
  font-weight: 600;
  color: #5c5c5c;
  text-transform: uppercase;
  margin-bottom: 0px;
}

#cat_page .container .list_news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  padding: 40px 0;
}

#cat_page .container .list_news .hidden_item {
  display: none;
}

#cat_page .container .list_news .item {
  position: relative;
  border-radius: 4px;
}

#cat_page .container .list_news .item .image img {
  border-radius: 4px;
}

#cat_page .container .list_news .item .item_hover {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  padding: 24px;
  border-radius: 4px;
  z-index: -10;
}

#cat_page .container .list_news .item .item_hover .name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  max-height: 70px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

#cat_page .container .list_news .item .item_hover .summary {
  font-size: 14px;
  color: #fff;
  max-height: 62px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
}

#cat_page .container .list_news .item .item_hover .summary p {
  margin-bottom: 0;
}

#cat_page .container .list_news .item:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#656673), to(#232539));
  background: linear-gradient(#656673, #232539);
  z-index: 0;
}

#cat_page .container .list_news .item:hover .image img {
  opacity: 0.3;
}

#cat_page .container .list_news .item:hover .item_hover {
  height: 100%;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  z-index: 1;
}

#cat_page .container .see_more {
  display: block;
  background: #fff;
  padding: 16px 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #4b5082;
  border-radius: 4px;
  max-width: 380px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
}

#cat_page .container .see_more:hover {
  color: #fff;
  background: #f5821e;
}
/*# sourceMappingURL=home.css.map */