.pageNews {
  position: relative;
}
.pageNews .newsBanner {
  position: relative;
  z-index: 2;
}
.pageNews .newsBanner .list_banner_news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pageNews .newsBanner .list_banner_news .item_banner_news {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.pageNews .newsBanner .list_banner_news .item_banner_news::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgb(3, 3, 3), rgba(0, 0, 0, 0.3) 8%);
}
.pageNews .newsBanner .list_banner_news .item_banner_news .img_banner_news {
  aspect-ratio: 480/660;
}
.pageNews .newsBanner .list_banner_news .item_banner_news .txt {
  z-index: 1;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
  padding: 16px;
}
.pageNews .newsBanner .list_banner_news .item_banner_news .txt .date {
  font-size: 13px;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 22px;
}
.pageNews .newsBanner .list_banner_news .item_banner_news .txt .date span {
  font-weight: 700;
}
.pageNews .newsBanner .list_banner_news .item_banner_news .txt .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.4px;
}
.pageNews .newsBanner .list_banner_news .item_banner_news .txt .title:hover {
  color: var(--color-secondary);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .pageNews .newsBanner .list_banner_news .item_banner_news .txt {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px;
  }
  .pageNews .newsBanner .list_banner_news .item_banner_news .txt .title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .pageNews .newsBanner .list_banner_news {
    display: unset !important;
  }
  .pageNews .newsBanner .list_banner_news .item_banner_news .txt {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px;
  }
  .pageNews .newsBanner .list_banner_news .item_banner_news .txt .title {
    font-size: 18px;
    line-height: 1.4;
  }
}
.pageNews .newsContent {
  padding-top: 80px;
  padding-bottom: 100px;
  background: var(--color-light);
}
.pageNews .newsContent .nav-tabs {
  gap: 8px;
  display: flex;
  border-bottom: none;
  flex-flow: row;
  margin-bottom: 52px;
}
.pageNews .newsContent .nav-tabs .nav-link {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border-radius: 50px;
  height: 44px;
  justify-content: center;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-weight: 500;
}
.pageNews .newsContent .nav-tabs .nav-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: transparent;
}
.pageNews .newsContent .nav-tabs .nav-link.active {
  border-color: transparent;
  background: var(--color-secondary);
  color: var(--color-white);
}
.pageNews .newsContent .content_news {
  display: flex;
  gap: 54px;
}
.pageNews .newsContent .--left {
  flex: 1;
}
.pageNews .newsContent .--left .phat-su-news {
  margin-bottom: 62px;
}
.pageNews .newsContent .--left .--top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.pageNews .newsContent .--left .--top .title_news {
  font-weight: 500;
  font-family: var(--font-alegreya);
  color: var(--color-primary);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1.12px;
}
.pageNews .newsContent .--left .--top .view_all {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pageNews .newsContent .--left .--top .view_all:hover {
  color: var(--color-secondary);
}
.pageNews .newsContent .--left .img_news {
  aspect-ratio: 820/456;
  position: relative;
  border-radius: 16px;
  margin-bottom: 12px;
}
.pageNews .newsContent .--left .img_news img {
  border-radius: 16px;
}
.pageNews .newsContent .--left .img_news .txt {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
  padding: 16px;
}
.pageNews .newsContent .--left .img_news .txt .date {
  font-size: 13px;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 22px;
}
.pageNews .newsContent .--left .img_news .txt .date span {
  font-weight: 700;
}
.pageNews .newsContent .--left .img_news .txt .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.4px;
}
.pageNews .newsContent .--left .img_news .txt .title:hover {
  color: var(--color-secondary);
}
.pageNews .newsContent .--left .list_news_phatsu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.pageNews .newsContent .--left .list_news_phatsu .--item {
  border-radius: 20px;
  background: var(--color-white);
  border: 1px solid rgba(255, 168, 0, 0.16);
  padding: 12px 12px 20px 12px;
}
.pageNews .newsContent .--left .list_news_phatsu .--item .--img {
  aspect-ratio: 241/144;
  border-radius: 10px;
  margin-bottom: 20px;
}
.pageNews .newsContent .--left .list_news_phatsu .--item .--img img {
  border-radius: 10px;
}
.pageNews .newsContent .--left .list_news_phatsu .--item .date {
  font-size: 13px;
  color: var(--color-black);
  margin-bottom: 4px;
  opacity: 0.6;
  line-height: 24px;
}
.pageNews .newsContent .--left .list_news_phatsu .--item .date span {
  font-weight: 700;
}
.pageNews .newsContent .--left .list_news_phatsu .--item .title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.4px;
}
.pageNews .newsContent .--left .list_news_phatsu .--item .title:hover {
  color: var(--color-secondary);
}
.pageNews .newsContent .--left .an-sinh-news {
  margin-bottom: 62px;
}
.pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular .img_an_sinh {
  aspect-ratio: 404/430;
  position: relative;
  border-radius: 16px;
  margin-bottom: 12px;
}
.pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular .img_an_sinh img {
  border-radius: 16px;
}
.pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular .img_an_sinh .txt {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(44px);
  backdrop-filter: blur(44px);
  padding: 16px;
}
.pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular .img_an_sinh .txt .date {
  font-size: 13px;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 22px;
}
.pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular .img_an_sinh .txt .date span {
  font-weight: 700;
}
.pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular .img_an_sinh .txt .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.4px;
}
.pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular .img_an_sinh .txt .title:hover {
  color: var(--color-secondary);
}
.pageNews .newsContent .--left .an-sinh-news .list_news .item_news .title {
  font-weight: 700 !important;
}
.pageNews .newsContent .--left .other_news .list_news {
  margin-bottom: 12px;
}
.pageNews .newsContent .--left .other_news .list_news .item_news .title {
  font-weight: 700 !important;
}
.pageNews .newsContent .--left .list_news_other {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-wrap: wrap;
}
.pageNews .newsContent .--left .list_news_other li {
  flex: 0 0 calc(50% - 40px);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 20px 20px 20px;
}
.pageNews .newsContent .--left .list_news_other li::marker {
  color: var(--color-secondary);
}
.pageNews .newsContent .--left .list_news_other li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.pageNews .newsContent .--left .list_news_other li:nth-last-child(2) {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.pageNews .newsContent .--left .list_news_other li .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  color: rgb(28, 28, 28);
}
.pageNews .newsContent .--left .list_news_other li .desc {
  font-size: 13px;
  line-height: 20px;
  color: var(--color-black);
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pageNews .newsContent .--right {
  width: 300px;
  position: sticky;
  top: 40px;
  right: 0;
  height: -moz-max-content;
  height: max-content;
}
.pageNews .newsContent .--right .img_right {
  border-radius: 30px;
  position: relative;
}
.pageNews .newsContent .--right .img_right .img_main {
  border-radius: 30px;
}
.pageNews .newsContent .--right .subTitle {
  position: absolute;
  top: 52px;
  left: 62px;
  right: 62px;
}
.pageNews .newsContent .--right .img_light_1 {
  position: absolute;
  bottom: -170px;
  right: 120px;
  width: 80px;
  height: auto;
}
@media (max-width: 1050px) and (min-width: 768px) {
  .pageNews .newsContent .--left .img_news .txt .title {
    font-size: 16px;
  }
  .pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular .img_an_sinh .txt {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px;
  }
  .pageNews .newsContent .--left .an-sinh-news .list-an-sinh-popular .img_an_sinh .txt .title {
    font-size: 16px;
  }
  .pageNews .newsContent .--right {
    display: none;
  }
}
@media (max-width: 767px) {
  .pageNews .newsContent {
    padding: 40px 0;
  }
  .pageNews .newsContent .content_news {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .pageNews .newsContent .content_news .--left .phat-su-news {
    margin-bottom: 40px;
  }
  .pageNews .newsContent .content_news .--left .phat-su-news .img_news .txt .title {
    font-size: 15px;
  }
  .pageNews .newsContent .content_news .--left .list_news_phatsu {
    grid-template-columns: repeat(2, 1fr);
  }
  .pageNews .newsContent .content_news .--left .an-sinh-news {
    margin-bottom: 40px;
  }
  .pageNews .newsContent .content_news .--left .an-sinh-news .list-an-sinh-popular {
    grid-template-columns: repeat(1, 1fr);
  }
  .pageNews .newsContent .--right {
    display: none;
  }
}
.pageNews .img_latern {
  position: absolute;
  right: 14%;
  width: 6%;
  top: 50%;
  height: auto;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}
.pageNews .img_latern_news {
  position: absolute;
  bottom: 0;
  right: -2%;
  width: 10%;
  top: 50%;
  height: auto;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.5));
}
.pageNews .container {
  position: relative;
  z-index: 2;
}
.pageNews .img_latern_3 {
  position: absolute;
  bottom: 0;
  width: 21%;
  top: 45%;
  height: auto;
  filter: blur(10px);
  left: -8%;
}
.pageNews .img_leaf {
  width: 17%;
  height: auto;
  position: absolute;
  top: 54%;
  right: -3%;
}
@media (max-width: 1050px) and (min-width: 768px) {
  .pageNews {
    padding-top: 60px;
  }
}

body {
  overflow-x: unset !important;
}/*# sourceMappingURL=news.css.map */