.list_grid_news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 12px;
}
@media (max-width: 768px) {
  .list_grid_news {
    grid-template-columns: 1fr;
    margin-left: 1%;
    margin-right: 1%;
    justify-content: center;
    align-items: center;
  }
}
.list_grid_news .item_new {
  overflow: hidden;
  padding: 8px;
  background-color: #f5f5f5;
  border-radius: 16px;
  transition: all 0.3s;
  height: 100%;
  max-height: 305px;
}
.list_grid_news .item_new .img-box {
  transition: all 0.3s;
  width: 100%;
  height: auto;
  border-radius: 16px;
  max-height: 178px;
  overflow: hidden;
  margin-bottom: 15px;
}
.list_grid_news .item_new .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.list_grid_news .item_new .info-box {
  transition: all 0.3s;
  padding: 8px;
}
.list_grid_news .item_new .info-box .created_cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
  transition: all 0.3s;
}
.list_grid_news .item_new .info-box .created_cat span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: rgb(163, 163, 163);
  transition: all 0.3s;
}
.list_grid_news .item_new .info-box .created_cat span:last-child {
  color: #ea212d;
}
.list_grid_news .item_new .info-box .title_new {
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  transition: all 0.4s;
  transform: translateY(0px);
}
.list_grid_news .item_new .info-box .summary_new {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: rgb(117, 117, 117);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}
.list_grid_news .item_new:hover .img-box {
  max-height: 145px;
}
.list_grid_news .item_new:hover .img-box img {
  transform: rotate(-10deg) scale(1.2);
}
.list_grid_news .item_new:hover .img-2 {
  max-height: 142px;
}
.list_grid_news .item_new:hover .info-box .created_cat {
  padding-bottom: 15px;
  margin-bottom: 0;
}
.list_grid_news .item_new:hover .info-box .title_new {
  transform: translateY(-10px);
  -webkit-line-clamp: 2;
  color: #fcd703;
}
.list_grid_news .item_big.item-new2 {
  height: 560px;
}
.list_grid_news .item_big {
  grid-area: 1/1/3/3;
  height: 100%;
  max-height: 560px !important;
}
@media (max-width: 768px) {
  .list_grid_news .item_big {
    grid-area: unset;
  }
}
.list_grid_news .item_big .img-box {
  max-height: 373px;
}
.list_grid_news .item_big .info-box .created_cat span {
  font-size: 14px;
  line-height: 18px;
}
.list_grid_news .item_big .info-box .title_new {
  font-size: 20px;
  line-height: 28px;
}
.list_grid_news .item_big .info-box .summary_new {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  color: rgb(117, 117, 117);
  font-size: 16px;
  line-height: 27px;
  font-weight: 400;
}
.list_grid_news .item_big:hover .img-box {
  max-height: 300px;
}
.list_grid_news .item-new2 {
  max-height: 273px;
  height: 273px;
}

.pagination {
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}
.pagination .other-page,
.pagination .next-page,
.pagination .last-page,
.pagination .current,
.pagination .pre-page,
.pagination .first-page {
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  color: var(--Black, #222);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}
.pagination .current {
  background: #dd2033;
  color: #fff;
}
.pagination .next-page,
.pagination .last-page,
.pagination .pre-page,
.pagination .first-page {
  background: #fff;
}

.section-cat-news .list_cat_news {
  display: flex;
  display: flex;
  padding: 0;
  margin: 0;
  margin: auto;
}
.section-cat-news .list_cat_news .tabs {
  background-color: #f6f6f7;
  display: flex;
  justify-content: center;
  margin: auto;
  padding: 0.3rem;
  border-radius: 20px;
  gap: 1rem;
}
@media (max-width: 768px) {
  .section-cat-news .list_cat_news .tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 98%;
    gap: 5px;
    overflow: scroll;
  }
}
.section-cat-news .list_cat_news .tabs .item_cat_new {
  border-radius: 15px;
  padding: 0.5rem 2rem;
  transition: 0.3s ease-in-out;
}
.section-cat-news .list_cat_news .tabs .item_cat_new .item-name {
  text-align: center;
  color: #828897;
}
.section-cat-news .list_cat_news .tabs .item_cat_new:hover {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 5px rgba(124, 116, 116, 0.05);
}
.section-cat-news .list_cat_news .tabs .item_cat_new:hover .item-name {
  color: #111;
}
.section-cat-news .list_cat_news .tabs .active_cat {
  background-color: #fff;
  box-shadow: 0px 0px 5px 5px rgba(124, 116, 116, 0.05);
  border-radius: 15px;
}
@media (max-width: 768px) {
  .section-cat-news .list_cat_news .tabs .active_cat {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.section-cat-news .list_cat_news .tabs .active_cat .item-name {
  color: #111;
}

.news_home_main .top_h3_cat {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.news_home_main .top_h3_cat .h3_title_new {
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
  width: 250px;
}
.news_home_main .top_h3_cat .h3_bor_right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news_home_main .top_h3_cat .h3_bor_right::before {
  width: 6px;
  height: 25px;
  border-radius: 0 3px 3px 0;
  background-color: #d51e29;
  content: "";
}
.news_home_main .top_h3_cat .color-box {
  width: calc(100% - 150px - 40px);
}
.news_home_main .top_h3_cat .color-box {
  background-color: rgb(244, 248, 250);
  height: 17px;
}
.news_home_main .grid_hot_news .item_new .title_new {
  margin-bottom: 0 !important;
}
.news_home_main .grid_hot_news .item_new .summary_new {
  display: none !important;
}
.news_home_main .grid_hot_news .item_big .title_new {
  margin-bottom: 15px !important;
}
.news_home_main .grid_hot_news .item_big .summary_new {
  display: -webkit-box !important;
}

@media all and (max-width: 1000px) {
  main .section-cat-news .list_cat_news {
    padding: 0;
  }
  main .section-cat-news .list_cat_news .item_cat_new {
    padding: 8px 10px;
  }
  main .news_home_main .top_h3_cat .list_cat_news {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    justify-content: unset;
  }
}
@media all and (max-width: 500px) {
  main .section-cat-news .list_cat_news .item_cat_new {
    padding: 8px;
  }
  main .section-cat-news .list_cat_news .item_cat_new .item-name {
    font-size: 14px;
  }
  main .news_home_main .top_h3_cat {
    gap: 20px;
  }
  main .news_home_main .top_h3_cat .h3_title_new {
    font-size: 18px;
    width: -moz-fit-content;
    width: fit-content;
  }
  main .news_home_main .top_h3_cat .list_cat_news {
    width: calc(100% - 80px - 20px);
  }
  main .news_home_main .top_h3_cat .list_cat_news .item_cat_new {
    padding: 10px 18px;
  }
}
@media (max-width: 768px) {
  .list_grid_news .item-new2 {
    max-height: 560px;
    height: auto;
  }
  .list_grid_news .item_new .img-box {
    max-height: 300px !important;
  }
}
@media (max-width: 768px) {
  .banner .banner-name .name {
    font-size: 30px !important;
  }
  .banner .banner-name .content {
    width: 98% !important;
  }
}
@media (max-width: 768px) {
  .list_grid_news .item_new {
    width: 100% !important;
    max-height: 100% !important;
    height: auto !important;
    padding: 4px;
  }
  .list_grid_news .item_new .img-box img {
    height: 100%;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
  }
}/*# sourceMappingURL=home.css.map */