.wider_nav-scnt {
  background: rgba(255, 255, 255, 0.85) !important;
}
.about-hero-section {
  position: relative;
  width: 100%;
  height: 630px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 630px;
  z-index: 0;
}
.about-hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-section .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding-bottom: 60px;
}
.about-hero-section .hero-content .hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #F8FAFF;
  margin: 0 0 180px;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.about-hero-section .hero-content .hero-subtitle {
  font-size: 20px;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 124px;
}
.about-hero-section .hero-content .sub-nav-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
}
.about-hero-section .hero-content .sub-nav-wrapper .sub-nav {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  height: 42px;
}
.about-hero-section .hero-content .sub-nav-wrapper .sub-nav .nav-item {
  width: 112px;
  height: 38px;
  border-radius: 19px;
  display: block;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  line-height: 38px;
  color: #333;
  transition: all 0.3s ease;
  margin: 0 2px;
}
.about-hero-section .hero-content .sub-nav-wrapper .sub-nav .nav-item:after {
  background-color: transparent;
}
.about-hero-section .hero-content .sub-nav-wrapper .sub-nav .nav-item.active {
  background-color: #002454;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 36, 84, 0.3);
}
.about-hero-section .hero-content .sub-nav-wrapper .sub-nav .nav-item:not(.active):hover {
  background-color: #002454;
  color: #fff;
}
.news-list-page {
  width: 100%;
  background-color: #fff;
  padding: 68px 0 0;
}
.news-list-page .news-container {
  width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}
.news-list-page .news-container .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
}
.news-list-page .news-container .page-header .page-title {
  font-size: 38px;
  color: #23262C;
  font-weight: 500;
  margin: 0;
}
.news-list-page .news-container .page-header .search-wrapper {
  position: relative;
  width: 320px;
  height: 56px;
  background-color: #002454;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.news-list-page .news-container .page-header .search-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}
.news-list-page .news-container .page-header .search-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.news-list-page .news-container .page-header .search-wrapper .search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 0;
  display: flex;
  align-items: center;
}
.news-list-page .news-container .page-header .search-wrapper .search-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}
.news-list-page .news-container .page-header .search-wrapper .search-btn:hover svg {
  transform: scale(1.1);
}
.news-list-page .news-container .news-list {
  display: flex;
  flex-direction: column;
}
.news-list-page .news-container .news-list .news-card {
  display: flex;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}
.news-list-page .news-container .news-list .news-card:last-child {
  border-bottom: none;
}
.news-list-page .news-container .news-list .news-card .card-img {
  width: 540px;
  height: 312px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 50px;
}
.news-list-page .news-container .news-list .news-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-list-page .news-container .news-list .news-card .card-img:hover img {
  transform: scale(1.05);
}
.news-list-page .news-container .news-list .news-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-list-page .news-container .news-list .news-card .card-content .date {
  font-size: 16px;
  color: #A0A5AB;
  margin-bottom: 35px;
  font-family: Arial, sans-serif;
}
.news-list-page .news-container .news-list .news-card .card-content .title {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.4;
}
.news-list-page .news-container .news-list .news-card .card-content .title a {
  text-decoration: none;
  color: #050505;
  transition: color 0.3s;
  cursor: context-menu;
  font-size: 24px;
  font-weight: 400;
}
.news-list-page .news-container .news-list .news-card .card-content .title a:hover {
  color: #002454;
}
.news-list-page .news-container .news-list .news-card .card-content .desc {
  font-size: 16px;
  color: #7A8189;
  line-height: 1.8;
  margin-bottom: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-list-page .news-container .news-list .news-card .card-content .btn-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 25px 6px 6px;
  border: 1px solid #e6e6e6;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}
.news-list-page .news-container .news-list .news-card .card-content .btn-pill .icon-circle {
  width: 36px;
  height: 36px;
  background-color: #002454;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
  transition: transform 0.3s;
}
.news-list-page .news-container .news-list .news-card .card-content .btn-pill .icon-circle svg {
  width: 16px;
  height: 16px;
}
.news-list-page .news-container .news-list .news-card .card-content .btn-pill .text {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}
.news-list-page .news-container .news-list .news-card .card-content .btn-pill:hover {
  border-color: #002454;
  box-shadow: 0 5px 15px rgba(0, 36, 84, 0.1);
}
.news-list-page .news-container .news-list .news-card .card-content .btn-pill:hover .icon-circle {
  transform: rotate(-45deg);
}
.news-list-page .news-container .news-list .news-card .card-content .btn-pill:hover .text {
  color: #002454;
}
.prev {
  margin-right: 150px;
}
.next {
  margin-left: 150px;
}
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  gap: 15px;
  height: 66px;
  background: #F8FAFF;
  position: relative;
}
.pagination-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  font-family: Arial, sans-serif;
}
.pagination-wrapper .page-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 14px;
  color: #666;
}
.pagination-wrapper .page-num:hover {
  color: #002454;
  background-color: #f0f4f8;
}
.pagination-wrapper .page-num.active {
  background-color: #002454;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 36, 84, 0.2);
}
.pagination-wrapper .page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #999;
  background: #fff;
}
.pagination-wrapper .page-btn .prev {
  position: absolute;
  left: 0;
}
.pagination-wrapper .page-btn svg {
  width: 16px;
  height: 16px;
}
.pagination-wrapper .page-btn:hover {
  background-color: #002454;
  border-color: #002454;
  color: #fff;
}
