<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  font-family: "Roboto", "Arial", sans-serif;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  font-size: 18px;
  font-weight: 400;
  color: #0b0b0b;
  line-height: 24px;
}
@media (max-width: 1023px) {
  body {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 20px;
  }
}

a {
  color: #00664a;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  color: #00664a;
  line-height: 47px;
}
@media (max-width: 1023px) {
  h1 {
    font-size: 28px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 22px;
  }
}

h2 {
  color: #1e1e1e;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 1023px) {
  h2 {
    font-size: 24px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}

.light-green {
  background-color: #dfe9e5 !important;
}

.yellow {
  color: #ffcc14 !important;
}

.container {
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 1023px) {
  .container {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .container {
    max-width: calc(100% - 40px);
  }
}

.breadcrumb {
  display: flex;
  margin: 0 auto;
  min-height: 40px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1023px) {
  .breadcrumb {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .breadcrumb {
    font-size: 12px;
  }
}
.breadcrumb a {
  color: rgba(0, 0, 0, 0.8);
}
.breadcrumb li:not(:last-child) {
  position: relative;
}
.breadcrumb li:not(:last-child):after {
  content: "&gt;";
  margin-left: 10px;
}

.float-group {
  position: fixed;
  right: 132px;
  top: 65%;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
@media (max-width: 1023px) {
  .float-group {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .float-group {
    right: 20px;
  }
}
.float-group #arrowTop {
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
}
.float-group img {
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .float-group img {
    width: 50px;
    height: 50px;
  }
}

.normal-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 321px;
  width: -moz-fit-content;
  width: fit-content;
  height: 49px;
  border-radius: 48px;
  background: #ffcc14;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  padding: 0;
  position: relative;
}
@media (max-width: 1023px) {
  .normal-btn {
    height: 55px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .normal-btn {
    height: 40px;
    width: 100%;
  }
}

header {
  width: 100%;
  height: 70px;
  background: #00664a;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
}
@media (max-width: 1023px) {
  header {
    height: 45px;
  }
}
@media (max-width: 767px) {
  header {
    height: 40px;
  }
}
header .header-wrap {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  header .header-wrap {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  header .header-wrap {
    flex-wrap: wrap;
  }
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  header .logo {
    flex: 0 0 34%;
    justify-content: flex-start;
  }
}
header .logo img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1023px) {
  header .logo img {
    height: 28px;
  }
}
@media (max-width: 767px) {
  header .logo img {
    height: 22px;
  }
}
header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 100%;
}
@media (max-width: 767px) {
  header nav {
    display: none;
  }
  header nav.show {
    position: absolute;
    top: 40px;
    left: 0;
    display: flex;
    flex-direction: column;
    background: rgba(23, 23, 23, 0.8);
    height: -moz-max-content;
    height: max-content;
    width: 100%;
  }
  header nav.show ul {
    width: 100%;
    height: auto;
    padding: 25px;
    gap: 25px;
  }
  header nav.show ul li {
    width: 100%;
    line-height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header nav.show ul li.border {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  header nav.show ul {
    padding: 20px;
  }
}
header nav ul {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  header nav ul {
    flex-direction: column;
  }
}
header nav li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  header nav li:not(:last-child) {
    border-right: none;
  }
}
header nav a {
  padding: 0 30px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
header nav a:hover, header nav a.on {
  color: #ffcc14;
}
header .btn-group {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
header .join-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 267px;
  height: 49px;
  border-radius: 48px;
  background: #ffcc14;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 0;
  gap: 5px;
  position: relative;
}
@media (max-width: 1023px) {
  header .join-btn {
    min-width: 97px;
    height: 30px;
    font-size: 12px;
  }
}
header .join-btn:after {
  content: "&gt;";
}
header .hamburger {
  display: none;
  width: 65px;
}
@media (max-width: 767px) {
  header .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #ffcc14;
    font-size: 14px;
    font-weight: 600;
    position: relative;
  }
  header .hamburger::after {
    content: "";
    width: 6px;
    height: 5px;
    background: url(../img/menu-arrow.png) no-repeat center/contain;
  }
}

main {
  margin: 0 auto;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-tag {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 22px;
  font-weight: 600;
  color: #00664a;
  padding-bottom: 10px;
  border-bottom: 4px solid #00664a;
}
@media (max-width: 1023px) {
  .section-tag {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .section-tag {
    font-size: 18px;
  }
}

.section-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-banner picture {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-banner img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-page-banner {
  margin-top: 40px;
  padding: 0 0 40px 0;
}
@media (max-width: 1023px) {
  .section-page-banner {
    margin-top: 30px;
    padding: 0 0 30px 0;
  }
}
@media (max-width: 767px) {
  .section-page-banner {
    margin-top: 20px;
    padding: 0 0 20px 0;
  }
}
.section-page-banner .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1023px) {
  .section-page-banner .container {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .section-page-banner .container {
    gap: 15px;
  }
}
.section-page-banner .container picture {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-page-banner .container img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-about {
  padding: 40px 0;
}
@media (max-width: 1023px) {
  .section-about {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .section-about {
    padding: 20px 0;
  }
}
.section-about .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-login {
  padding: 30px 0 60px;
}
@media (max-width: 1023px) {
  .section-login {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .section-login {
    padding: 20px 0;
  }
}
.section-login .container {
  display: flex;
  gap: 29px;
}
@media (max-width: 1023px) {
  .section-login .container {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .section-login .container {
    gap: 10px;
  }
}
.section-login .content-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1023px) {
  .section-login .content-left {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .section-login .content-left {
    gap: 10px;
  }
}
.section-login .content-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  align-self: flex-end;
  flex: 0 0 36%;
}
@media (max-width: 1023px) {
  .section-login .content-right {
    flex: 0 0 100%;
    align-self: center;
  }
}
.section-login .content-right img {
  max-width: 433px;
  width: 100%;
}
@media (max-width: 1023px) {
  .section-login .content-right img {
    max-width: 342px;
  }
}
@media (max-width: 767px) {
  .section-login .content-right img {
    max-width: 100%;
  }
}

.feature-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.feature-list li {
  flex: 0 0 calc(50% - 55px);
  display: flex;
  padding: 20px 25px;
  flex-direction: column;
  gap: 5px;
  border-radius: 10px;
  background: #f4f4f4;
}
@media (max-width: 1023px) {
  .feature-list li {
    padding: 25px;
  }
}
@media (max-width: 767px) {
  .feature-list li {
    flex: 0 0 100%;
    padding: 10px;
  }
}
.feature-list .list-title {
  color: #1e1e1e;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .feature-list .list-title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .feature-list .list-title {
    font-size: 16px;
  }
}

.section-page {
  min-height: 450px;
  max-width: 1800px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1023px) {
  .section-page {
    margin: 0 auto;
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .section-page {
    min-height: 415px;
    max-width: calc(100% - 40px);
  }
}
.section-page.login {
  background: url(../img/login-bg.png) no-repeat center/cover;
}
@media (max-width: 1023px) {
  .section-page.login {
    background: url(../img/login-bg-p.png) no-repeat center/cover;
  }
}
@media (max-width: 767px) {
  .section-page.login {
    background: url(../img/login-bg-m.png) no-repeat center/cover;
  }
}
.section-page.sign {
  background: url(../img/sign-bg.png) no-repeat center/cover;
}
@media (max-width: 1023px) {
  .section-page.sign {
    background: url(../img/sign-bg-p.png) no-repeat center/cover;
  }
}
@media (max-width: 767px) {
  .section-page.sign {
    background: url(../img/sign-bg-m.png) no-repeat center/cover;
  }
}
.section-page.live {
  background: url(../img/live-bg.png) no-repeat center/cover;
}
@media (max-width: 1023px) {
  .section-page.live {
    background: url(../img/live-bg-p.png) no-repeat center/cover;
  }
}
@media (max-width: 767px) {
  .section-page.live {
    background: url(../img/live-bg-m.png) no-repeat center/cover;
  }
}
.section-page .container {
  display: flex;
}
.section-page .container .page-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}
@media (max-width: 1023px) {
  .section-page .container .page-info {
    gap: 10px;
  }
}
.section-page .container .page-img {
  flex: 0 0 316px;
}
@media (max-width: 1023px) {
  .section-page .container .page-img {
    align-self: center;
    flex: 0 0 261px;
  }
}
@media (max-width: 767px) {
  .section-page .container .page-img {
    display: none;
  }
}
.section-page .container .page-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-page h1 {
  color: #fec600;
}

.section-table {
  padding: 40px 0 0;
}
@media (max-width: 1023px) {
  .section-table {
    padding: 30px 0 0;
  }
}
@media (max-width: 767px) {
  .section-table {
    padding: 20px 0 0;
  }
}
.section-table h2 {
  color: #00664a;
  padding-bottom: 10px;
}
@media (max-width: 1023px) {
  .section-table h2 {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section-table h2 {
    padding-bottom: 10px;
  }
}

.table-wrap {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  border-radius: 15px;
  border: 1px solid #a1a1a1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .table-wrap {
    margin-top: 20px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .table-wrap {
    margin-top: 10px;
    font-size: 14px;
    overflow-x: auto;
  }
}
.table-wrap .table-row {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
.table-wrap .table-row:not(:last-child) .table-td {
  border-bottom: 1px solid #a1a1a1;
}
.table-wrap .table-row.table-head {
  color: #fff;
  font-size: 20px;
}
@media (max-width: 1023px) {
  .table-wrap .table-row.table-head {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .table-wrap .table-row.table-head {
    font-size: 16px;
  }
}
.table-wrap .table-row.table-head .table-td {
  min-height: 26px;
  background-color: #008561;
}
.table-wrap .table-row.table-head .table-td span::before {
  display: none;
}
.table-wrap .table-row.table-head .table-td:nth-child(2) {
  background-color: #fec600;
  color: #000;
}
.table-wrap .table-td {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 0 0 calc(25% - 40px);
  padding: 20px;
}
@media (max-width: 767px) {
  .table-wrap .table-td {
    flex: 0 0 calc(50% - 25px);
  }
}
.table-wrap .table-td span {
  width: 100%;
  display: flex;
  gap: 10px;
  position: relative;
}
@media (max-width: 767px) {
  .table-wrap .table-td {
    padding: 10px;
  }
}
.table-wrap .table-td:first-child {
  background-color: #008561;
  color: #fff;
  font-size: 20px;
}
@media (max-width: 1023px) {
  .table-wrap .table-td:first-child {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .table-wrap .table-td:first-child {
    font-size: 16px;
  }
}
.table-wrap .table-td:not(:last-child) {
  border-right: 1px solid #a1a1a1;
}
.table-wrap .table-td:nth-child(2) {
  background-color: #dfe9e5;
  gap: 10px;
}
.table-wrap .table-td:nth-child(2) span::before {
  content: "";
  flex: 0 0 25px;
  height: 26px;
  background: url(../img/good-icon.png) no-repeat center/contain;
}
.table-wrap .table-td:nth-child(3) span::before, .table-wrap .table-td:nth-child(4) span::before {
  content: "";
  flex: 0 0 25px;
  height: 26px;
  background: url(../img/bad-icon.png) no-repeat center/contain;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #171717;
}
footer .footer-wrap {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1023px) {
  footer .footer-wrap {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  footer .footer-wrap {
    padding: 20px 0;
  }
}
footer .footer-top {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  gap: 65px;
}
@media (max-width: 1023px) {
  footer .footer-top {
    font-size: 14px;
    gap: 27px;
  }
}
@media (max-width: 767px) {
  footer .footer-top {
    flex-direction: column;
    font-size: 12px;
    gap: 15px;
  }
}
footer .footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1023px) {
  footer .footer-left {
    gap: 10px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  footer .footer-left {
    width: 100%;
    flex: 1;
    flex-direction: row;
    align-items: flex-end;
    gap: 20px;
  }
}
footer .footer-left .footer-logo {
  height: 49px;
}
@media (max-width: 1023px) {
  footer .footer-left .footer-logo {
    height: 45px;
  }
}
@media (max-width: 767px) {
  footer .footer-left .footer-logo {
    height: 42px;
  }
}
footer .footer-left .footer-img {
  height: 30px;
  display: flex;
  gap: 5px;
}
footer .footer-left .footer-img img {
  height: 100%;
  width: auto;
}
footer .footer-right {
  flex: 1;
}
footer .footer-bottom {
  width: 100%;
  border-top: 1px solid #a8a8a8;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 1023px) {
  footer .footer-bottom {
    flex-direction: column;
    gap: 20px;
  }
}
footer .footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
}
@media (max-width: 1023px) {
  footer .footer-bottom .copyright {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  footer .footer-bottom .copyright {
    font-size: 14px;
  }
}
footer .footer-menu {
  flex: 1;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
}
@media (max-width: 1023px) {
  footer .footer-menu {
    justify-content: flex-start;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  footer .footer-menu {
    font-size: 14px;
  }
}
footer .footer-menu li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 1023px) {
  footer .footer-menu li:first-child a {
    padding-left: 0;
  }
}
footer .footer-menu a {
  color: #fff;
  text-transform: uppercase;
  padding: 0 30px;
}
@media (max-width: 767px) {
  footer .footer-menu a {
    padding: 0 15px;
  }
}/*# sourceMappingURL=main.css.map */

.news-wrap {
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  display: flex !important;
}
.news-wrap .news-item {
  align-items: center;
}
img.img-article{
width: 100%;
    min-width: 275px;
    aspect-ratio: 800 / 535;
    object-fit: contain;
}
@media (min-width: 1024px){
  .news-wrap .news-item {
    width: 30%;
    padding: .5rem !important;
  }
}
@media (max-width: 678px){
  .news-wrap .news-item {
    width: 100%;
  }
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  gap: 5px;
}

@media (max-width: 767px) {
  .pagination-wrap {
      gap: initial;
  }
}

.pagination-wrap .page-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #000;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.pagination-wrap .page-item.active {
  background: #72aee6;
  color: #000;
}</pre></body></html>