﻿@charset "UTF-8";
/******* RESPONSIVE ********/
/****Màn hình máy tính thông thường****/
/****Màn hình desktop loại bé****/
/**** Màn hình ipad hiển thị theo chiều ngang (Landscape) ****/
/****Màn hình ipad loại bé hiển thị theo chiều ngang (Landscape)****/
/****Màn hình ipad hiển thị theo chiều dọc (Portrait)****/
/****Màn hình ipad loại bé hiển thị theo chiều dọc (Portrait)****/
/****Màn hình điện thoại hiển thị theo chiều ngang (Landscape)****/
/****Màn hình điện thoại Iphone Plus****/
/****Màn hình điện thoại Iphone****/
/****Màn hình điện thoại loại bé****/
@font-face {
  font-family: "Manrope";
  src: url("../../fonts/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
}
ul, li {
  list-style: none;
}

body {
  color: #0a2540;
  font-family: Manrope, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
}

p {
  margin: 0 auto;
}

a:hover {
  text-decoration: none;
}

@keyframes opacitymove {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes translateXmove {
  from {
    transform: translateX(-30px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#home {
  /* Quick Search Section */
  /* Interactive Map */
  /* Statistics Cards */
  /* News & Updates */
  /* Legal Documents */
  /* Quick Links */
  /* Chart Container */
  /* Section Titles */
  /* Responsive */
}
#home .section-title {
  display: flex;
  align-items: center;
}
#home .section-title img {
  width: 30px;
}
#home .section-title span {
  font-weight: bold;
  margin: 30px 0;
  font-size: 22px;
  padding-left: 16px;
}
#home .slick-prev:before, #home .slick-next:before {
  color: #2cab00;
  font-size: 40px;
}
#home .slick-prev {
  left: -50px;
}
#home .slick-next {
  right: -50px;
}
#home .banner {
  background: linear-gradient(90deg, rgba(18, 22, 33, 0.6) 0%, rgba(18, 22, 33, 0.4) 40%, rgba(30, 35, 48, 0.2) 75%, rgba(30, 35, 48, 0) 100%), url("../../images/home/banner.jpg") center/cover no-repeat;
  position: relative;
  min-height: 80vh;
  color: #fff;
  overflow: hidden;
}
#home .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle fill="rgba(255,255,255,0.1)" cx="20" cy="20" r="2"/><circle fill="rgba(255,255,255,0.1)" cx="80" cy="40" r="1"/><circle fill="rgba(255,255,255,0.1)" cx="40" cy="80" r="1.5"/></svg>');
  animation: float 20s infinite linear;
}
@keyframes float {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100px);
  }
}
#home .banner .container {
  position: relative;
  z-index: 2;
}
#home .banner .banner-title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
#home .banner .banner-subtitle {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  opacity: 0.95;
  font-weight: 500;
}
#home .banner .btn {
  padding: 10px 30px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
#home .banner .btn-primary {
  background: linear-gradient(135deg, #FFC107, #FF9800);
  color: #333;
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}
#home .banner .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
}
#home .banner .btn-outline-light {
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
#home .banner .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: white;
}
#home .quick-search {
  background: white;
  margin-top: -50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
#home .search-tabs .nav-link {
  color: #333;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  font-weight: 600;
}
#home .search-tabs .nav-link.active {
  color: #2cab00;
  border-bottom-color: #2cab00;
}
#home .map-container {
  height: 420px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#home .map-container #popup {
  position: relative;
  background: white;
  padding: 5px 10px;
  border: 1px solid #ccc;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  min-width: 100px;
  display: none;
  color: #333;
  font-size: 12px;
  left: 50px;
  bottom: -4px;
}
#home .map-container #popup.popup-arrow::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 30px;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: white transparent transparent transparent;
}
#home .map-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
#home .map-legend {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0.8;
}
#home .legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
#home .legend-color {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  margin-right: 8px;
}
#home .stat-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid;
}
#home .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
#home .stat-label {
  color: #333;
}
#home .news-card {
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
#home .news-card .card-header {
  background: #4f76dd;
  color: white;
  font-weight: 600;
  border: none;
}
#home .news-card .card-body.news-wrapper {
  height: 380px;
  overflow: hidden;
  position: relative;
}
#home .news-card .card-body.news-wrapper .news-list {
  display: inline-block;
  animation: scroll-up 20s linear infinite;
}
#home .news-card .card-body.news-wrapper .news-list .news-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
#home .news-card .card-body.news-wrapper .news-list .news-item:hover {
  background: #f8f9fa;
}
#home .news-card .card-body.news-wrapper .news-list .news-date {
  font-size: 0.85rem;
  color: #333;
}
@keyframes scroll-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
#home .doc-card {
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
#home .doc-card .card-header {
  background: #4f76dd;
  color: white;
  font-weight: 600;
  border: none;
}
#home .doc-card .doc-list .doc-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
}
#home .doc-card .doc-list .doc-item .doc-icon {
  width: 40px;
  height: 40px;
  background: #ffdc47;
  border-radius: 8px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}
#home .doc-card .doc-list .doc-item h6 {
  color: #333;
}
#home .doc-card .doc-list .doc-item:hover {
  background: #f8f9fa;
}
#home .quick-links .list-group-item {
  border: none;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
#home .quick-links .list-group-item:hover {
  background: #E8F5E8;
  color: #2cab00;
}
#home .chart-container {
  position: relative;
  height: 400px;
  padding: 40px 20px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
#home .section-title {
  color: #333;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-size: 24px;
}
#home .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #2cab00;
}
@media (max-width: 768px) {
  #home .hero-content h1 {
    font-size: 2rem;
  }
  #home .stat-number {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1200px) {
  #home .banner .banner-nav .vertical-curve {
    margin-left: -15px !important;
    margin-top: 30% !important;
  }
  #home .banner .banner-nav ul li:nth-child(3) {
    padding-left: 50% !important;
  }
  #home .banner .banner-nav ul li:nth-child(2), #home .banner .banner-nav ul li:nth-child(4) {
    padding-left: 30% !important;
  }
  #home .banner .banner-nav ul li:nth-child(1), #home .banner .banner-nav ul li:nth-child(5) {
    padding-left: 15% !important;
  }
  #home .banner .banner-img {
    top: 35% !important;
  }
}
@media only screen and (max-width: 1024px) {
  #home .banner .banner-img, #home .banner:after {
    display: none;
  }
  #home .banner .data-register-btn {
    width: 100%;
    justify-content: center;
    bottom: 15px;
  }
  #home .banner .banner-nav .vertical-curve {
    margin-left: 50px !important;
    margin-top: 19% !important;
  }
  #home .banner .banner-nav ul li:nth-child(3) {
    padding-left: 33% !important;
  }
  #home .banner .banner-nav ul li:nth-child(2), #home .banner .banner-nav ul li:nth-child(4) {
    padding-left: 28% !important;
  }
  #home .banner .banner-nav ul li:nth-child(1), #home .banner .banner-nav ul li:nth-child(5) {
    padding-left: 15% !important;
  }
  #home .banner .banner-nav ul li a {
    width: auto !important;
  }
  #home .slick-prev {
    left: 0;
  }
  #home .slick-next {
    right: 15px;
  }
  #home .slick-prev, #home .slick-next {
    z-index: 2;
  }
  #home .slick-prev:before, #home .slick-next:before {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  #home .banner .banner-nav .vertical-curve {
    margin-left: 0px !important;
    margin-top: 30% !important;
  }
  #home .banner .banner-nav ul li:nth-child(3) {
    padding-left: 33% !important;
  }
  #home .banner .banner-nav ul li:nth-child(2), #home .banner .banner-nav ul li:nth-child(4) {
    padding-left: 28% !important;
  }
  #home .banner .banner-nav ul li:nth-child(1), #home .banner .banner-nav ul li:nth-child(5) {
    padding-left: 15% !important;
  }
}
@media only screen and (max-width: 480px) {
  #home .banner .banner-nav .vertical-curve {
    display: none;
  }
  #home .banner .banner-nav ul {
    padding-left: 0;
  }
  #home .banner .banner-nav ul li:nth-child(3) {
    padding-left: 33% !important;
  }
  #home .banner .banner-nav ul li:nth-child(2), #home .banner .banner-nav ul li:nth-child(4) {
    padding-left: 28% !important;
  }
  #home .banner .banner-nav ul li:nth-child(1), #home .banner .banner-nav ul li:nth-child(5) {
    padding-left: 15% !important;
  }
  #home .banner .banner-nav ul li a {
    width: 100% !important;
  }
  #home .banner .banner-nav ul li img {
    width: 40px !important;
    height: 40px !important;
  }
}
