@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
:root {
  --main-font: "Montserrat", sans-serif;
  --second-font: "Open Sans", sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--main-font) !important;
}

p, a, h1, h2, h3, h4, h5, h6, span {
  font-family: var(--main-font) !important;
  margin: 0;
}

a, a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

.tc-container {
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 24px;
}
.tc-container.small {
  max-width: 880px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .tc-container {
    padding: 0 14px;
  }
}

.uk-offcanvas-bar {
  background-color: #fff;
}
.uk-offcanvas-bar .mobile-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 32px;
}
.uk-offcanvas-bar .mobile-body .navbar-mobile {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.uk-offcanvas-bar .mobile-body .navbar-mobile a {
  font-size: 14px;
  line-height: normal;
  color: #4b5563;
  text-transform: uppercase;
}
.uk-offcanvas-bar .mobile-body .navbar-mobile a:hover {
  color: #000;
}
.uk-offcanvas-bar .mobile-body .btns {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.uk-offcanvas-bar .mobile-body .btns a {
  font-size: 14px;
  line-height: normal;
  color: #4b5563;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 8px 12px;
  border: 1px solid #ececec;
  width: 146px;
  text-align: center;
}

header {
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 999;
}
@media (min-width: 320px) and (max-width: 767px) {
  header {
    padding: 8px 0;
  }
}
header .tc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  width: 220px;
  height: auto;
  display: flex;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .logo {
    width: 140px;
  }
}
header .logo a {
  display: flex;
  width: 100%;
}
header .logo a img {
  width: 100%;
  height: auto;
}
header .navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .navbar {
    display: none;
  }
}
header .navbar a {
  font-size: 14px;
  line-height: normal;
  color: #4b5563;
  text-transform: uppercase;
}
header .navbar a:hover {
  color: #000;
}
header .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .btn-group {
    display: none;
  }
}
header .btn-group a {
  font-size: 14px;
  line-height: normal;
  color: #4b5563;
  text-transform: uppercase;
}
header .btn-group a:hover {
  color: #000;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .btn-group .admin-btn {
    display: none;
  }
}
header .mobile-btn {
  display: none;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .mobile-btn {
    display: flex;
  }
}
header .mobile-btn .mobile-btn_custom {
  width: 24px;
  height: 24px;
  border: 1px solid #787878;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer {
  border-top: 1px solid #ececec;
  padding: 20px 0;
  background-color: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer {
    padding: 16px 0;
  }
}
footer .tc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .tc-container {
    flex-direction: column;
  }
}
footer .f-logo a img {
  width: 160px;
  height: auto;
}
footer .nav {
  display: flex;
  gap: 24px;
  flex-direction: row;
}
footer .nav li a {
  font-size: 14px;
  color: #000;
}
footer .copyright p {
  font-size: 12px;
  color: #000;
}

main {
  padding-top: 74px;
}
@media (min-width: 320px) and (max-width: 767px) {
  main {
    padding-top: 45px;
  }
}
main .btn {
  padding: 7.5px 16px;
  border: 1px solid #D0D5DD;
  color: var(--text-color);
  background-color: #fff;
  border-radius: 8px;
  font-size: 14px;
  line-height: normal;
  font-weight: 500;
  display: flex;
  cursor: pointer;
}
main .btn.btn-success {
  border: 1px solid #52B694;
  background-color: #52B694;
  color: #fff;
}
main .btn.btn-info {
  border: 1px solid #D0D5DD;
  color: var(--text-color);
}
main .btn.btn-warning {
  border: 1px solid #F79009;
  background-color: #F79009;
  color: #fff;
}
main .btn.btn-danger {
  border: 1px solid #E24C1E;
  background-color: #E24C1E;
  color: #fff;
}

.auth-page {
  width: 100vw;
  height: calc(100vh - 179px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #f9fafb;
}
.auth-page .auth-body {
  max-width: 420px;
  width: 100%;
  margin: auto;
  padding: 24px;
  background-color: #fff;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
}
.auth-page .auth-body .title {
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  color: #000;
  margin-bottom: 24px;
}

.home-page .big-title {
  font-size: 48px;
  line-height: 1;
  color: #000;
  font-weight: 200;
  letter-spacing: -1.2px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .big-title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
  }
}
.home-page .cover {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .cover {
    padding-top: 42px;
  }
}
.home-page .cover .cover-body {
  width: 48%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .cover .cover-body {
    width: 100%;
    margin-bottom: 24px;
  }
}
.home-page .cover .cover-body .title {
  font-size: 96px;
  line-height: 1;
  color: #000;
  font-weight: 200;
  letter-spacing: -2.4px;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .cover .cover-body .title {
    font-size: 24px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 12px;
  }
}
.home-page .cover .cover-body .title span {
  font-weight: 400;
}
.home-page .cover .cover-body .desc {
  margin-bottom: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .cover .cover-body .desc {
    margin-bottom: 16px;
  }
}
.home-page .cover .cover-body .desc p {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.625;
  font-weight: 300;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .cover .cover-body .desc p {
    text-align: center;
    font-size: 14px;
  }
}
.home-page .cover .cover-body .link {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  padding: 12px 32px;
  display: flex;
  width: max-content;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .cover .cover-body .link {
    margin: 0 auto;
  }
}
.home-page .cover .cover-image {
  width: 48%;
  height: 614px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .cover .cover-image {
    width: 100%;
    height: 74.667vw;
  }
}
.home-page .cover .cover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .goal {
  padding: 110px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .goal {
    padding: 42px 0;
  }
}
.home-page .goal .goal-body {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 42px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .goal .goal-body {
    margin: 0 auto 20px;
  }
}
.home-page .goal .goal-body .big-title {
  margin-bottom: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .goal .goal-body .big-title {
    margin-bottom: 16px;
  }
}
.home-page .goal .goal-body .desc {
  color: #4b5563;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.625;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .goal .goal-body .desc {
    font-size: 14px;
    font-weight: 400;
  }
}
.home-page .goal .goald-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .goal .goald-list {
    gap: 16px;
  }
}
.home-page .goal .goald-list .item {
  text-align: center;
  max-width: 280px;
}
.home-page .goal .goald-list .item .item-tt {
  font-weight: 400;
  font-size: 18px;
  color: #000;
  line-height: normal;
  letter-spacing: 0.45px;
  margin-bottom: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .goal .goald-list .item .item-tt {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
  }
}
.home-page .goal .goald-list .item .item-desc {
  line-height: 1.625;
  font-weight: 300;
  font-size: 14px;
  color: #4b5563;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .goal .goald-list .item .item-desc {
    font-weight: 400;
    font-size: 12px;
  }
}
.home-page .news-section {
  background-color: #f9fafb;
  padding: 110px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .news-section {
    padding: 42px 0;
  }
}
.home-page .news-section .big-title {
  text-align: center;
  margin-bottom: 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .news-section .big-title {
    margin-bottom: 32px;
  }
}
.home-page .news-section .read {
  border-radius: 24px;
  padding: 64px;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .news-section .read {
    padding: 20px;
  }
}
.home-page .news-section .read .img {
  display: flex;
  margin-bottom: 24px;
}
.home-page .news-section .read .img img {
  width: 100%;
  height: auto;
}
.home-page .news-section .read .desc {
  font-size: 16px;
  line-height: normal;
  color: #000;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .news-section .read .desc {
    font-size: 14px;
  }
}
.home-page .news-section .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .news-section .list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.home-page .news-section .list .item {
  padding: 42px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .news-section .list .item {
    padding: 24px;
  }
}
.home-page .news-section .list .item .img {
  width: 100%;
  height: 322px;
  margin-bottom: 24px;
  display: flex;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .news-section .list .item .img {
    height: 48vw;
    margin-bottom: 20px;
  }
}
.home-page .news-section .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .news-section .list .item .tt {
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .news-section .list .item .tt {
    font-weight: 500;
    font-size: 16px;
  }
}
.home-page .news-section .list .item .desc {
  font-size: 14px;
  font-weight: 300;
  color: #4b5563;
  margin-bottom: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .news-section .list .item .desc {
    font-size: 12px;
    font-weight: 400;
  }
}
.home-page .news-section .list .item .link {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  display: flex;
  margin: 0 0 0 auto;
}
.home-page .contact-section {
  padding: 110px 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .contact-section {
    padding: 42px 0;
  }
}
.home-page .contact-section .big-title {
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .contact-section .big-title {
    margin-bottom: 20px;
  }
}
.home-page .contact-section .desc {
  margin-bottom: 42px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .contact-section .desc {
    margin-bottom: 32px;
  }
}
.home-page .contact-section .desc p {
  text-align: center;
  font-size: 16px;
  color: #000;
  font-weight: 300;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .contact-section .desc p {
    font-size: 14px;
  }
}
.home-page .contact-section .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .contact-section .list {
    gap: 16px;
  }
}
.home-page .contact-section .list .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-page .contact-section .list .item p {
  font-size: 16px;
  font-weight: 300;
  color: #4b5563;
  text-align: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .contact-section .list .item p {
    font-size: 14px;
  }
}
.home-page .contact-section .list .item p.tt {
  font-weight: 400;
  color: #000;
}

.comp-page {
  padding: 40px 0;
  min-height: 80vh;
}
@media (min-width: 320px) and (max-width: 767px) {
  .comp-page {
    padding: 32px 0;
  }
}
.comp-page .comp-page_tt {
  font-size: 32px;
  line-height: normal;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .comp-page .comp-page_tt {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.comp-page .comp-page_desc {
  margin-bottom: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .comp-page .comp-page_desc {
    margin-bottom: 24px;
  }
}
.comp-page .comp-page_desc p {
  font-size: 18px;
  line-height: normal;
  color: #000;
}
@media (min-width: 320px) and (max-width: 767px) {
  .comp-page .comp-page_desc p {
    font-size: 12px;
  }
}
.comp-page .comp-tabs .uk-subnav {
  gap: 20px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .comp-page .comp-tabs .uk-subnav {
    gap: 8px;
  }
}
.comp-page .comp-tabs .uk-subnav li.uk-active a {
  background-color: #000;
  color: #fff;
}
.comp-page .comp-tabs .uk-subnav li a {
  padding: 8px 24px;
  font-size: 14px;
  line-height: normal;
  border-radius: 500px;
  font-weight: 500;
  color: #000;
}
@media (min-width: 320px) and (max-width: 767px) {
  .comp-page .comp-tabs .uk-subnav li a {
    padding: 4px 8px;
    font-size: 12px;
  }
}
.comp-page .comp-tabs .uk-subnav.uk-subnav-pill {
  margin-left: 0;
}
.comp-page .comp-tabs .uk-subnav.uk-subnav-pill > li {
  padding-left: 0;
}
.comp-page .comp-tabs .comp-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .comp-page .comp-tabs .comp-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.comp-page .comp-tabs .comp-list .comp-item {
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 24px;
}
.comp-page .comp-tabs .comp-list .comp-item .img {
  display: flex;
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
}
.comp-page .comp-tabs .comp-list .comp-item .img a {
  width: 100%;
  height: 100%;
  display: flex;
}
.comp-page .comp-tabs .comp-list .comp-item .img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comp-page .comp-tabs .comp-list .comp-item .tt {
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comp-page .comp-tabs .comp-list .comp-item .text {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 8px;
}
.comp-page .comp-tabs .comp-list .comp-item .text .uk-icon {
  margin-right: 6px;
  color: #000;
}
.comp-page .comp-tabs .comp-list .comp-item .text p {
  font-size: 14px;
  line-height: normal;
  color: #000;
}
.comp-page .comp-tabs .comp-list .comp-item .btn-more {
  border-top: 1px solid #ececec;
  padding-top: 20px;
  margin-top: 20px;
}
.comp-page .comp-tabs .comp-list .comp-item .btn-more a {
  width: 100%;
  display: flex;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  border: 1px solid #000;
  color: #000;
  padding: 8px 24px;
  border-radius: 8px;
  justify-content: center;
}

.live-section {
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.live-section .detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .live-section .detail {
    flex-direction: column;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .live-section .detail .tt {
    text-align: center;
  }
}
.live-section .detail .tt h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.live-section .detail .tt p {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 767px) {
  .live-section .last-update {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}
.live-section .last-update p {
  color: #fff;
  font-size: 12px;
  text-align: right;
}
@media (min-width: 320px) and (max-width: 767px) {
  .live-section .last-update p {
    text-align: center;
  }
}
.live-section .last-update .date {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: right;
  margin-bottom: 4px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .live-section .last-update .date {
    text-align: center;
  }
}
.live-section .last-update .btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .live-section .last-update .btns {
    justify-content: center;
  }
}
.live-section .last-update .btns .btn-more {
  background-color: #fff;
  padding: 4px 12px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  font-size: 12px;
}

.temtseen-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
  padding: 42px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .temtseen-card {
    padding: 14px;
  }
}
.temtseen-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .temtseen-card img {
    margin-bottom: 14px;
  }
}
.temtseen-card .temtseen-card_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  gap: 42px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .temtseen-card .temtseen-card_head {
    gap: 16px;
    margin-bottom: 16px;
  }
}
.temtseen-card .temtseen-card_head h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (min-width: 320px) and (max-width: 767px) {
  .temtseen-card .temtseen-card_head h1 {
    font-size: 20px;
  }
}
.temtseen-card .temtseen-card_head .tag span {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 500px;
}
.temtseen-card .temtseen-card_head .tag span.inactive {
  background-color: #ececec;
  color: #000;
  padding: 4px 12px;
  border-radius: 500px;
}
.temtseen-card .temtseen-card_head .tag span.active {
  background-color: #17B26A;
  color: #fff;
}
.temtseen-card .temtseen-card_detail {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .temtseen-card .temtseen-card_detail {
    gap: 20px;
    margin-bottom: 16px;
  }
}
.temtseen-card .temtseen-card_detail .detail-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.temtseen-card .temtseen-card_detail .detail-item .uk-icon {
  width: 24px;
  height: 24px;
  color: #2b7fff;
}
@media (min-width: 320px) and (max-width: 767px) {
  .temtseen-card .temtseen-card_detail .detail-item .uk-icon {
    width: 20px;
    height: 20px;
  }
}
.temtseen-card .temtseen-card_detail .detail-item .uk-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.temtseen-card .temtseen-card_detail .detail-item .tt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.temtseen-card .temtseen-card_detail .detail-item .tt span {
  display: block;
  font-size: 14px;
  color: #6a7282;
}
.temtseen-card .temtseen-card_detail .detail-item .tt p {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.temtseen-card .temtseen-card_body {
  font-size: 14px;
  color: #000;
}

.grand-card {
  padding: 24px;
  background-color: #FAC515;
  border-radius: 16px;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-card {
    padding: 14px;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
}
.grand-card .grand-card_detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-card .grand-card_detail {
    flex-direction: column;
    justify-content: center;
  }
}
.grand-card .grand-card_detail .icon {
  width: 52px;
  height: 52px;
  color: #fff;
  margin-right: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-card .grand-card_detail .icon {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-card .grand-card_detail .tt {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
}
.grand-card .grand-card_detail .tt h2 {
  font-size: 22px;
  line-height: normal;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-card .grand-card_detail .tt h2 {
    text-align: center;
    font-size: 18px;
  }
}
.grand-card .grand-card_detail .tt p {
  color: #000;
  font-size: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-card .grand-card_detail .tt p {
    font-size: 14px;
    text-align: center;
  }
}
.grand-card .btn-more {
  display: flex;
  padding: 12px 24px;
  background-color: #fff;
  font-weight: 500;
  font-size: 18px;
  border-radius: 6px;
}

.no-users {
  background-color: #f6f3f4;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
}
.no-users .icon {
  width: 80px;
  height: 80px;
  color: #99a1af;
  margin: 0 auto 8px;
}
.no-users h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}
.no-users p {
  text-align: center;
  color: #000;
  font-size: 14px;
}

.result-item {
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
.result-item .result-item_head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.result-item .result-item_head .tt {
  font-size: 20px;
  font-weight: 500;
  color: #000;
}
.result-item .result-item_head .live-tt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.result-item .result-item_head .live-tt p {
  color: #00a63e;
  font-size: 13px;
  font-weight: 500;
}
.result-item .result-item_body table {
  width: 100%;
  min-width: 1024px;
}
.result-item .result-item_body table thead th {
  padding: 6px 12px 20px;
  border-bottom: 1px solid #ececec;
}
.result-item .result-item_body table thead th p {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.result-item .result-item_body table tbody td {
  padding: 12px;
}
.result-item .result-item_body table tbody td p {
  font-size: 14px;
  color: #000;
  text-align: center;
}
.result-item .result-item_body table tbody td .bold {
  font-weight: 500;
}
.result-item .result-item_body table tbody td .total {
  font-size: 20px;
  font-weight: 600;
  color: #039855;
}
.result-item .result-item_body table tbody td .orolt-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.result-item .result-item_body table tbody td .orolt-detail .name {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.result-item .result-item_body table tbody td .orolt-detail .time {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.result-item .result-item_body table tbody td .orolt-detail .time img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.result-item .result-item_body table tbody td .orolt-detail .time span {
  font-size: 14px;
  border: 1px solid #efefef;
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.1);
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 500;
}
.result-item .result-item_body table tbody td .orolt-detail .orolt {
  color: #000;
  font-weight: 500;
}
.result-item .result-item_body table tbody td .orolt-detail .orolt span {
  font-size: 14px;
  border: 1px solid #efefef;
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.1);
  padding: 2px 6px;
  border-radius: 8px;
}

.grand-page .back-btn {
  display: flex;
  margin-bottom: 24px;
}
.grand-page .back-btn .link-back {
  display: flex;
  padding: 8px 24px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  border-radius: 24px;
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.1);
}
.grand-page .grand-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-top {
    flex-direction: column;
    padding: 20px;
  }
}
.grand-page .grand-top .grand-top_tt h1 {
  font-size: 24px;
  line-height: normal;
  font-weight: 600;
  color: #000;
  margin-bottom: 6px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-top .grand-top_tt h1 {
    text-align: center;
  }
}
.grand-page .grand-top .grand-top_tt p {
  font-size: 16px;
  color: #4b5563;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-top .grand-top_tt p {
    text-align: center;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-top .grand-top_detail {
    margin-top: 12px;
  }
}
.grand-page .grand-top .grand-top_detail p {
  font-size: 14px;
  line-height: normal;
  color: #000;
  text-align: right;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-top .grand-top_detail p {
    text-align: center;
  }
}
.grand-page .grand-top .grand-top_detail p.bold {
  margin-top: 4px;
  font-weight: 600;
}
.grand-page .grand-top .grand-top_detail span {
  display: flex;
  margin: 0 0 0 auto;
  width: max-content;
  font-size: 12px;
  color: #000;
  font-weight: 500;
  border-radius: 500px;
  padding: 2px 12px;
  margin-top: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-top .grand-top_detail span {
    margin: 12px auto 0;
  }
}
.grand-page .grand-top .grand-top_detail span.now {
  background-color: #dcfce7;
}
.grand-page .grand-top .grand-top_detail span.end {
  background-color: #f3f4f6;
}
.grand-page .grand-top .desc {
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.grand-page .grand-top .desc p {
  font-size: 14px;
  font-weight: 300;
  color: #000;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-top .desc p {
    text-align: center;
  }
}
.grand-page .grand-top .desc p span {
  font-weight: 500;
}
.grand-page .grand-result {
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-result {
    padding: 14px;
  }
}
.grand-page .grand-result .head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-result .head {
    gap: 4px;
  }
}
.grand-page .grand-result .head svg {
  color: #f0b100;
  width: 36px;
  height: 36px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-result .head svg {
    width: 32px;
    height: 32px;
  }
}
.grand-page .grand-result .head h2 {
  font-size: 24px;
  color: #000;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-result .head h2 {
    font-size: 18px;
  }
}
.grand-page .grand-result .list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-result .list {
    gap: 16px;
  }
}
.grand-page .grand-result .list .top-place {
  width: 100%;
}
.grand-page .grand-result .list .top-place .item {
  width: 40%;
  margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-result .list .top-place .item {
    width: 100%;
  }
}
.grand-page .grand-result .list .second-place {
  width: 40%;
}
.grand-page .grand-result .list .second-place:nth-child(2) {
  margin: 0 0 0 auto;
}
.grand-page .grand-result .list .second-place:nth-child(3) {
  margin: 0 auto 0 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-result .list .second-place {
    width: 100%;
  }
}
.grand-page .grand-result .list .other-place {
  width: 32%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .grand-result .list .other-place {
    width: 100%;
  }
}
.grand-page .grand-result .list .item {
  border: 1px solid #efefef;
  padding: 20px;
  border-radius: 12px;
}
.grand-page .grand-result .list .item .place {
  width: 62px;
  height: 62px;
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.1);
  border-radius: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.grand-page .grand-result .list .item .place p {
  font-size: 42px;
  color: #000;
  font-weight: 500;
}
.grand-page .grand-result .list .item .place p.txt {
  font-size: 32px;
}
.grand-page .grand-result .list .item .name {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.grand-page .grand-result .list .item .club, .grand-page .grand-result .list .item .region {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  text-align: center;
}
.grand-page .grand-result .list .item .club {
  margin-bottom: 8px;
}
.grand-page .grand-result .list .item .type {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.grand-page .grand-result .list .item .type .type-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grand-page .grand-result .list .item .type .type-item p {
  font-size: 12px;
  color: #4b5563;
}
.grand-page .grand-result .list .item .type .type-item .tag {
  border-radius: 500px;
  padding: 2px 10px;
  background-color: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grand-page .grand-result .list .item .type .type-item .tag span {
  color: #000;
  font-weight: 500;
  font-size: 12px;
}
.grand-page .grand-result .list .item .total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #ececec;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.grand-page .grand-result .list .item .total p {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.grand-page .grand-result .list .item .total .point {
  display: flex;
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: 500px;
}
.grand-page .grand-result .list .item .total .point span {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}
.grand-page .sport-list {
  padding: 24px;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .sport-list {
    padding: 16px;
  }
}
.grand-page .sport-list h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 16px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .sport-list h3 {
    font-size: 16px;
  }
}
.grand-page .sport-list .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .grand-page .sport-list .list {
    gap: 16px;
    grid-template-columns: 1fr;
  }
}
.grand-page .sport-list .list .item {
  border: 1px solid #efefef;
  padding: 12px 20px;
  border-radius: 12px;
  text-align: center;
}
.grand-page .sport-list .list .item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}
.grand-page .sport-list .list .item .orolt {
  font-size: 14px;
  color: #000;
}
.grand-page .sport-list .list .item .users {
  font-size: 14px;
  font-weight: 500;
  color: #52B694;
}

#results-section {
  padding-top: 12px;
}
#results-section .uk-subnav li.uk-active a {
  background-color: #000;
  color: #fff;
}
#results-section .uk-subnav li a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  padding: 6px 12px;
  border-radius: 8px;
}

/*# sourceMappingURL=main.css.map */
