.list_news_popular {
  margin-top: -70px;
  position: relative;
  margin-bottom: 100px;
}
.list_news_popular .--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}
.list_news_popular .--item .--img {
  aspect-ratio: 612/360;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 24px;
}
.list_news_popular .--item .--top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}
.list_news_popular .--item .--top .date_time {
  display: flex;
  align-items: center;
  gap: 10px;
}
.list_news_popular .--item .--top .date_time i {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 300;
}
.list_news_popular .--item .--top .date_time .time {
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
}
.list_news_popular .--item .--top .cate {
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  position: relative;
}
.list_news_popular .--item .--top .cate::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: rgb(194, 194, 194);
  border-radius: 50%;
  left: -14px;
}
.list_news_popular .--item .title {
  display: block;
  font-size: 24px;
  color: var(--color-black);
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.list_news_popular .--item .title:hover {
  color: var(--color-secondary);
}
.list_news_popular .--item .desc {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.71;
}
@media (max-width: 1439px) {
  .list_news_popular {
    margin-bottom: 80px;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .list_news_popular {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .list_news_popular {
    margin-bottom: 40px;
  }
  .list_news_popular .--list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .list_news_popular .--item .title {
    font-size: 18px;
    padding-bottom: 16px;
    margin-bottom: 12px;
  }
}

.newsList {
  position: relative;
}
.newsList .container_frame {
  position: relative;
  z-index: 2;
}
.newsList .--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.newsList .--top .title_news {
  font-size: 42px;
  color: var(--color-primary);
  font-family: var(--font-title);
  letter-spacing: -1.26px;
}
.newsList .--top .search {
  background: rgb(239, 239, 239);
  border-radius: 50px;
  padding: 0 20px;
  height: 52px;
  width: 340px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsList .--top .search input {
  background: transparent;
  border: none;
  flex: 1;
}
.newsList .--top .search input:focus {
  outline: none;
}
.newsList .--top .search input::-moz-placeholder {
  color: rgb(137, 137, 137);
}
.newsList .--top .search input::placeholder {
  color: rgb(137, 137, 137);
}
.newsList .--top .search i {
  color: rgb(137, 137, 137);
}
.newsList .pattern {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: auto;
  pointer-events: none;
}
.newsList .nav-tabs {
  gap: 8px;
  display: flex;
  border-bottom: none;
  flex-flow: row;
  margin-bottom: 32px;
}
.newsList .nav-tabs .nav-link {
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border-radius: 50px;
  height: 46px;
  justify-content: center;
  border: 1px solid rgb(220, 220, 220);
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}
.newsList .nav-tabs .nav-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: transparent;
}
.newsList .nav-tabs .nav-link.active {
  border-color: transparent;
  background: var(--color-secondary);
  color: var(--color-white);
}
.newsList .list_news {
  margin-bottom: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.newsList .list_news .item_news .--top {
  justify-content: flex-start;
}
.newsList .pagination {
  gap: 8px;
  justify-content: center;
}
.newsList .pagination .page-item .page-link {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  cursor: pointer;
}
.newsList .pagination .page-item .page-link:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
.newsList .pagination .page-item.active .page-link {
  background: var(--color-secondary);
  color: var(--color-white);
}
@media (max-width: 1050px) and (min-width: 768px) {
  .newsList .--top .title_news {
    font-size: 38px;
  }
  .newsList .--top .search {
    height: 44px;
    width: 290px;
  }
  .newsList .list_news {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .newsList {
    padding: 40px 0;
  }
  .newsList .--top {
    flex-flow: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .newsList .--top .title_news {
    font-size: 28px;
  }
  .newsList .--top .search {
    height: 44px;
  }
  .newsList .nav-tabs {
    justify-content: center;
    flex-flow: row;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 0;
    padding-bottom: 24px;
  }
  .newsList .nav-tabs .nav-link {
    width: -moz-max-content;
    width: max-content;
    border-radius: unset;
    background: transparent;
    color: var(--color-black);
    border: none;
    position: relative;
  }
  .newsList .nav-tabs .nav-link.active {
    background: transparent;
    color: var(--color-black);
  }
  .newsList .nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
  }
  .newsList .list_news {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .newsList .list_news .item_news .--top {
    flex-flow: row;
  }
}

.list_news .item_news {
  border-radius: 30px;
  overflow: hidden;
  height: auto;
  display: flex !important;
  flex-direction: column;
}
.list_news .item_news:hover .content {
  background: var(--color-secondary);
}
.list_news .item_news:hover .content .--top .date_time i {
  color: var(--color-white);
}
.list_news .item_news:hover .content .--top .date_time .time {
  color: rgba(255, 255, 255, 0.7);
}
.list_news .item_news:hover .content .--top .cate {
  color: rgba(255, 255, 255, 0.7);
}
.list_news .item_news:hover .content .--top .cate::after {
  background: var(--color-white);
}
.list_news .item_news:hover .content .title {
  color: var(--color-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.list_news .item_news:hover .content .desc {
  color: rgba(255, 255, 255, 0.7);
}
.list_news .item_news:hover .content .btn_detail {
  color: var(--color-white);
}
.list_news .item_news:hover .content .btn_detail .name {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  color: var(--color-white);
}
.list_news .item_news .content {
  background: rgb(247, 247, 247);
  padding: 24px;
  flex: 1;
}
.list_news .item_news .content .--top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 8px;
}
.list_news .item_news .content .--top .date_time {
  display: flex;
  align-items: center;
  gap: 10px;
}
.list_news .item_news .content .--top .date_time i {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 300;
}
.list_news .item_news .content .--top .date_time .time {
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
}
.list_news .item_news .content .--top .cate {
  font-size: 13px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  position: relative;
}
.list_news .item_news .content .--top .cate::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: rgb(194, 194, 194);
  border-radius: 50%;
  left: -14px;
}
.list_news .item_news .content .title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.list_news .item_news .content .desc {
  line-height: 1.71;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list_news .item_news .content .btn_detail {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgb(184, 184, 184);
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
}
.list_news .item_news .content .btn_detail .name {
  transform: translateX(-100%);
  transition: all 0.75s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
.list_news .item_news .--img {
  height: 300px;
}
@media (max-width: 767px) {
  .list_news .item_news .content .title {
    font-size: 16px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .list_news .item_news .content .desc {
    margin-bottom: 16px;
  }
  .list_news .item_news .content .btn_detail .name {
    opacity: 1;
    transform: none;
    color: rgb(184, 184, 184);
  }
}

.banner_primary {
  aspect-ratio: 1440/510;
  position: relative;
}
.banner_primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 20.15%), linear-gradient(180deg, rgba(0, 0, 0, 0) 79.02%, rgba(0, 0, 0, 0.456) 91.81%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}
.banner_primary .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.banner_primary .txt .title {
  font-size: 78px;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.12;
  letter-spacing: -2.34px;
  text-align: center;
  font-family: var(--font-title);
}
@media (max-width: 1439px) {
  .banner_primary .txt .title {
    font-size: 68px;
  }
}
@media (max-width: 1050px) and (min-width: 768px) {
  .banner_primary {
    margin-top: 60px;
  }
  .banner_primary .txt .title {
    font-size: 52px;
    letter-spacing: 0.32px;
  }
  .banner_primary .txt .name {
    font-size: 56px;
    letter-spacing: -1.12px;
  }
}
@media (max-width: 767px) {
  .banner_primary {
    aspect-ratio: unset;
    height: 300px;
  }
  .banner_primary .txt .title {
    font-size: 48px;
    letter-spacing: 0.32px;
    text-align: center;
    margin-bottom: 6px;
  }
  .banner_primary .txt .name {
    font-size: 45px;
    letter-spacing: -1.68px;
    line-height: 1.15;
    text-align: center;
  }
}/*# sourceMappingURL=news.css.map */