@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");
:root {
  --main-color: #0e99f5;
  --color-dark: #333;
  --color-white: #fff;
  --text-color-dark: #121212;
  --text-color-white: #f2f2f2;
  --main-font: "Nunito", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a, a:hover {
  text-decoration: none;
  color: #000;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

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

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

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  letter-spacing: 0.4px;
}

p, a, li {
  letter-spacing: 0.4px;
}

.uk-dotnav {
  margin-top: 24px;
}
.uk-dotnav li:hover a {
  background-color: var(--main-color);
}
.uk-dotnav li.uk-active a {
  width: 24px;
  background-color: var(--main-color);
}
.uk-dotnav li a {
  border: 1px solid var(--main-color);
  transition: width 0.3s ease;
  border-radius: 500px;
}

.custom_pagination {
  width: calc(70% - 20px);
  margin: 40px 0 0 auto;
}
.custom_pagination .pagination {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.custom_pagination .pagination li {
  border-radius: 8px;
  border: 1px solid var(--main-color);
  width: 31px;
  height: 31px;
  display: flex;
  margin-right: 6px;
}
.custom_pagination .pagination li.active, .custom_pagination .pagination li:hover {
  background-color: var(--main-color);
}
.custom_pagination .pagination li.active span, .custom_pagination .pagination li.active a, .custom_pagination .pagination li:hover span, .custom_pagination .pagination li:hover a {
  color: #fff;
}
.custom_pagination .pagination li:last-child {
  margin-right: 0;
}
.custom_pagination .pagination li span, .custom_pagination .pagination li a {
  margin: auto;
  display: block;
  width: 100%;
  text-align: center;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .d-desktop {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .d-desktop {
    display: none;
  }
}

.d-mobile {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .d-mobile {
    display: block;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .d-mobile {
    display: block;
  }
}

header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1009;
  background-color: #fff;
}
header .header-top .tc-row, header .header-bottom .tc-row {
  display: flex;
  max-width: 1280px;
  padding: 6px 24px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .header-top .tc-row, header .header-bottom .tc-row {
    padding: 6px 14px;
  }
}
header .header-top {
  background-color: var(--main-color);
}
header .header-top .tc-row .tc-col {
  display: flex;
}
header .header-top .tc-row .tc-col .link {
  display: block;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
}
header .header-top .tc-row .tc-col .link.mr-1 {
  margin-right: 14px;
}
header .header-top .tc-row .tc-col .link.mr-3 {
  margin-right: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .header-top .tc-row .tc-col .link.mr-3 {
    margin-right: 14px;
  }
}
header .header-top .tc-row .tc-col .link.i-sm span svg {
  width: 18px;
}
header .header-top .tc-row .tc-col .link span {
  font-size: 12px;
  display: block;
}
@media (min-width: 320px) and (max-width: 767px) {
  header .header-top .tc-row .tc-col .link span {
    font-size: 10px;
  }
}
header .header-bottom {
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.15);
}
header .header-bottom .tc-row .logo {
  width: 100px;
}
header .header-bottom .tc-row .logo img {
  width: 100%;
}
header .header-bottom .tc-row nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}
header .header-bottom .tc-row nav ul li {
  display: flex;
  align-items: center;
  margin-left: 24px;
}
header .header-bottom .tc-row nav ul li:last-child {
  border: 1px solid var(--main-color);
  padding: 4px 14px;
  border-radius: 8px;
}
header .header-bottom .tc-row nav ul li:last-child a {
  color: var(--main-color);
}
header .header-bottom .tc-row nav ul li:last-child a::before {
  display: none;
}
header .header-bottom .tc-row nav ul li.active a, header .header-bottom .tc-row nav ul li:hover a {
  color: var(--main-color);
}
header .header-bottom .tc-row nav ul li.active a::before, header .header-bottom .tc-row nav ul li:hover a::before {
  width: 100%;
}
header .header-bottom .tc-row nav ul li a {
  color: var(--text-color-dark);
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
header .header-bottom .tc-row nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}
header .header-bottom .tc-row .mobile-menu .uk-button-default {
  padding: 0 16px;
  border: 1px solid rgba(14, 153, 245, 0.5);
  border-radius: 8px;
}
header .header-bottom .tc-row .mobile-menu .uk-button-default span {
  color: var(--main-color);
}
header .header-bottom .tc-row .mobile-menu .uk-offcanvas-bar {
  background-color: #fff;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
header .header-bottom .tc-row .mobile-menu .uk-offcanvas-bar .uk-close {
  color: #000;
}
header .header-bottom .tc-row .mobile-menu .uk-offcanvas-bar .mobi-logo {
  width: 100px;
  margin: 0 auto 24px;
}
header .header-bottom .tc-row .mobile-menu .uk-offcanvas-bar .mobile-nav ul {
  padding: 0;
  margin: 0;
}
header .header-bottom .tc-row .mobile-menu .uk-offcanvas-bar .mobile-nav ul li {
  margin-bottom: 8px;
}
header .header-bottom .tc-row .mobile-menu .uk-offcanvas-bar .mobile-nav ul li:last-child {
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--main-color);
  text-align: center;
}
header .header-bottom .tc-row .mobile-menu .uk-offcanvas-bar .mobile-nav ul li:last-child a {
  color: var(--main-color);
}
header .header-bottom .tc-row .mobile-menu .uk-offcanvas-bar .mobile-nav ul li a {
  color: var(--text-color-dark);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--main-font);
}

footer {
  border-top: 1px solid var(--main-color);
  padding-top: 48px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer {
    padding-top: 24px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  footer {
    padding-top: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer .footer-top {
    padding-bottom: 24px;
  }
}
footer .footer-top .tc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container {
    justify-content: center;
  }
}
footer .footer-top .tc-container .tt {
  width: 100%;
  font-size: 20px;
  color: var(--main-color);
  font-weight: 600;
  margin-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer .footer-top .tc-container .tt {
    font-size: 16px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container .tt {
    font-size: 16px;
    text-align: center;
  }
}
footer .footer-top .tc-container .logo {
  width: 225px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer .footer-top .tc-container .logo {
    width: 119px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container .logo {
    width: 119px;
    margin-bottom: 24px;
  }
}
footer .footer-top .tc-container .logo .img {
  width: 100%;
  height: 226px;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer .footer-top .tc-container .logo .img {
    height: 120px;
    margin-bottom: 14px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container .logo .img {
    height: 120px;
    margin-bottom: 14px;
  }
}
footer .footer-top .tc-container .logo .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
footer .footer-top .tc-container .logo .social {
  display: flex;
  justify-content: center;
  gap: 24px;
}
footer .footer-top .tc-container .logo .social a {
  color: var(--main-color);
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}
footer .footer-top .tc-container .links {
  width: 25%;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container .links {
    width: 100%;
    margin-bottom: 24px;
  }
}
footer .footer-top .tc-container .links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-top .tc-container .links ul li {
  margin-bottom: 4px;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container .links ul li {
    text-align: center;
    margin-bottom: 0;
  }
}
footer .footer-top .tc-container .links ul li:last-child {
  margin-bottom: 0;
}
footer .footer-top .tc-container .links ul li a {
  color: var(--text-color-dark);
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer .footer-top .tc-container .links ul li a {
    font-size: 12px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container .links ul li a {
    font-size: 12px;
  }
}
footer .footer-top .tc-container .contact {
  width: 25%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer .footer-top .tc-container .contact {
    width: 40%;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container .contact {
    width: 100%;
  }
}
footer .footer-top .tc-container .contact a {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container .contact a {
    justify-content: center;
  }
}
footer .footer-top .tc-container .contact a .txt {
  font-size: 14px;
  margin-left: 14px;
  color: var(--text-color-dark);
}
@media (min-width: 768px) and (max-width: 1023px) {
  footer .footer-top .tc-container .contact a .txt {
    font-size: 12px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  footer .footer-top .tc-container .contact a .txt {
    text-align: center;
    font-size: 12px;
  }
}
footer .footer-bottom {
  border-top: 1px solid #ececec;
}
footer .footer-bottom .copyright {
  text-align: center;
  font-size: 12px;
  color: var(--main-color);
  padding: 8px 24px;
}

.home-page {
  margin-bottom: 72px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page {
    margin-bottom: 24px;
    padding-top: 94px;
  }
}
.home-page .slider {
  margin-bottom: 64px;
  display: flex;
  flex-wrap: wrap;
  height: 800px;
  background-color: var(--main-color);
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .slider {
    margin-bottom: 24px;
    height: auto;
  }
}
.home-page .slider-img {
  width: 50%;
  height: 100%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .slider-img {
    width: 100%;
  }
}
.home-page .slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .slider-video {
  width: 50%;
  height: 100%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .slider-video {
    width: 100%;
    height: 320px;
  }
}
.home-page .slider-video iframe {
  width: 100%;
  height: 100%;
}
.home-page .big-title {
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-page .big-title {
    margin-bottom: 14px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .big-title {
    margin-bottom: 14px;
  }
}
.home-page .big-title h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 0;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .big-title h3 {
    font-size: 18px;
  }
}
.home-page .more-link {
  display: block;
  width: max-content;
  margin: 0 auto;
  background-color: var(--main-color);
  padding: 12px 32px;
  color: #fff;
  border-radius: 500px;
  font-size: 16px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .more-link {
    padding: 6px 24px;
    font-size: 14px;
  }
}
.home-page .course .tc-container .course-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-page .course .tc-container .course-list {
    gap: 14px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .course .tc-container .course-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.home-page .course .tc-container .course-list .list-item {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.home-page .course .tc-container .course-list .list-item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.home-page .course .tc-container .course-list .list-item .image {
  width: 100%;
  height: 240px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-page .course .tc-container .course-list .list-item .image {
    height: 160px;
  }
}
.home-page .course .tc-container .course-list .list-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .course .tc-container .course-list .list-item .body {
  padding: 24px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .course .tc-container .course-list .list-item .body {
    padding: 14px;
  }
}
.home-page .course .tc-container .course-list .list-item .body .title {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
  position: relative;
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .course .tc-container .course-list .list-item .body .title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.home-page .course .tc-container .course-list .list-item .body .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 20%;
  height: 1px;
  background-color: var(--main-color);
}
.home-page .course .tc-container .course-list .list-item .body .detail {
  margin-bottom: 14px;
}
.home-page .course .tc-container .course-list .list-item .body .detail p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .course .tc-container .course-list .list-item .body .detail p {
    font-size: 12px;
  }
}
.home-page .course .tc-container .course-list .list-item .body .more {
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  display: block;
  padding: 8px 24px;
  width: max-content;
  border-radius: 500px;
  margin: 0 0 0 auto;
  transition: 0.3s ease;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .course .tc-container .course-list .list-item .body .more {
    padding: 4px 14px;
    font-size: 12px;
  }
}
.home-page .course .tc-container .course-list .list-item .body .more:hover {
  background-color: var(--main-color);
  color: #fff;
}
.home-page .blog {
  padding-top: 64px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-page .blog {
    padding-top: 32px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .blog {
    padding-top: 24px;
  }
}
.home-page .blog .blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-page .blog .blog-list {
    gap: 14px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .home-page .blog .blog-list {
    grid-template-columns: 1fr;
  }
}
.home-page .blog .blog-list .list-item {
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.home-page .blog .blog-list .list-item:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.home-page .blog .blog-list .list-item:hover .img img {
  transform: scale(1.1);
}
.home-page .blog .blog-list .list-item .img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home-page .blog .blog-list .list-item .img {
    height: 160px;
  }
}
.home-page .blog .blog-list .list-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
}
.home-page .blog .blog-list .list-item .body .title {
  color: var(--text-color-dark);
  font-weight: 600;
  font-size: 18px;
  padding: 14px 14px 12px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .blog .blog-list .list-item .body .title {
    font-size: 16px;
  }
}
.home-page .blog .blog-list .list-item .body .title:hover {
  color: var(--main-color);
}
.home-page .blog .blog-list .list-item .body .desc {
  padding: 0 14px;
  margin-bottom: 12px;
}
.home-page .blog .blog-list .list-item .body .desc p {
  margin: 0;
  font-size: 14px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .blog .blog-list .list-item .body .desc p {
    font-size: 12px;
  }
}
.home-page .blog .blog-list .list-item .body .more {
  display: flex;
  border-top: 1px solid #ececec;
  padding: 10px 14px 14px;
  font-size: 16px;
  color: var(--main-color);
  justify-content: space-between;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .blog .blog-list .list-item .body .more {
    font-size: 14px;
  }
}
.home-page .blog .blog-list .list-item .body .more .more-text {
  display: flex;
  align-items: center;
}
.home-page .blog .blog-list .list-item .body .more .date span {
  font-size: 14px;
  display: block;
  color: #666;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .home-page .blog .blog-list .list-item .body .more .date span {
    font-size: 12px;
  }
}

.blog-page {
  padding: 140px 0 64px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page {
    padding: 120px 0 40px;
  }
}
.blog-page .tc-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-page .tc-container .blog-list {
  width: 60%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-list {
    width: 100%;
    gap: 24px;
  }
}
.blog-page .tc-container .blog-list .list-item {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}
.blog-page .tc-container .blog-list .list-item .img {
  width: 100%;
  height: 400px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-list .list-item .img {
    height: 320px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .blog-page .tc-container .blog-list .list-item .img {
    height: 200px;
  }
}
.blog-page .tc-container .blog-list .list-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-page .tc-container .blog-list .list-item .body {
  padding: 24px 0;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-list .list-item .body {
    padding: 14px 0;
  }
}
.blog-page .tc-container .blog-list .list-item .body .title {
  padding: 0 24px;
  font-size: 24px;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 14px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-list .list-item .body .title {
    font-size: 18px;
    padding: 0 14px;
    margin-bottom: 8px;
  }
}
.blog-page .tc-container .blog-list .list-item .body .desc {
  padding: 0 24px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-list .list-item .body .desc {
    padding: 0 14px;
    font-size: 14px;
  }
}
.blog-page .tc-container .blog-list .list-item .body .desc p {
  color: var(--text-color-dark);
  margin: 0;
  font-size: 16px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-list .list-item .body .desc p {
    font-size: 14px;
  }
}
.blog-page .tc-container .blog-list .list-item .body .date {
  display: block;
  font-size: 14px;
  color: #666;
}
.blog-page .tc-container .blog-list .list-item .body .date.pd {
  padding: 0 24px;
  margin-bottom: 14px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-list .list-item .body .date.pd {
    padding: 0 14px;
    margin-bottom: 4px;
  }
}
.blog-page .tc-container .blog-list .list-item .body .btn {
  border-top: 1px solid #ececec;
  margin-top: 14px;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-list .list-item .body .btn {
    padding: 14px 14px 0;
  }
}
.blog-page .tc-container .blog-list .list-item .body .btn .more {
  background-color: var(--main-color);
  color: #fff;
  display: block;
  padding: 6px 24px;
  border-radius: 500px;
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-list .list-item .body .btn .more {
    font-size: 14px;
  }
}
.blog-page .tc-container .blog-list .list-item .body .btn .share {
  display: flex;
  gap: 14px;
}
.blog-page .tc-container .blog-list .list-item .body .btn .share a {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  color: var(--main-color);
  transition: 0.3s ease;
}
.blog-page .tc-container .blog-list .list-item .body .btn .share a.tw:hover {
  background-color: #1DA1F2;
  color: #fff;
}
.blog-page .tc-container .blog-list .list-item .body .btn .share a.fb:hover {
  background-color: #3b5998;
  color: #fff;
}
.blog-page .tc-container .blog-side {
  width: 34%;
  height: max-content;
  position: sticky;
  top: 140px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .blog-page .tc-container .blog-side {
    display: none;
  }
}
.blog-page .tc-container .blog-side .sm-title {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--main-color);
  font-weight: 600;
  position: relative;
  width: max-content;
}
.blog-page .tc-container .blog-side .sm-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 20%;
  height: 1px;
  background-color: var(--main-color);
}
.blog-page .tc-container .blog-side .cat {
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
}
.blog-page .tc-container .blog-side .cat .link {
  width: 100%;
  display: flex;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color-dark);
  transition: color 0.3s ease;
}
.blog-page .tc-container .blog-side .cat .link:hover {
  color: var(--main-color);
}
.blog-page .tc-container .blog-side .cat .link:last-child {
  margin-bottom: 0;
}
.blog-page .tc-container .blog-side .archive {
  padding: 24px;
  border-top: 1px solid #ececec;
}
.blog-page .tc-container .blog-side .archive .list {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.blog-page .tc-container .blog-side .archive .list a {
  border: 1px solid var(--main-color);
  text-align: center;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--main-color);
  display: block;
}

.about-page {
  padding: 140px 0 64px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .about-page {
    padding: 120px 0 40px;
  }
}
.about-page .tc-box {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .about-page .tc-box {
    padding: 0 14px;
  }
}
.about-page .tc-box .text-box, .about-page .tc-box .list-box {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  border-radius: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .about-page .tc-box .text-box, .about-page .tc-box .list-box {
    padding: 14px;
  }
}
.about-page .tc-box .text-box .tt, .about-page .tc-box .list-box .tt {
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  color: var(--main-color);
  position: relative;
  margin-bottom: 14px;
}
.about-page .tc-box .text-box .tt::after, .about-page .tc-box .list-box .tt::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 10%;
  height: 1px;
  background-color: var(--main-color);
}
.about-page .tc-box .text-box p, .about-page .tc-box .list-box p {
  margin: 0 0 14px;
  text-align: center;
  color: var(--text-color-dark);
  font-size: 14px;
}
.about-page .tc-box .text-box p:last-child, .about-page .tc-box .list-box p:last-child {
  margin: 0;
}
.about-page .tc-box .list-box {
  margin-top: 32px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .about-page .tc-box .list-box {
    margin-top: 14px;
  }
}
.about-page .tc-box .list-box:first-child {
  margin-top: 0;
}
.about-page .tc-box .list-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-page .tc-box .list-box ul li {
  font-size: 14px;
  color: var(--text-color-dark);
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .about-page .tc-box .list-box ul li {
    padding-left: 0;
    text-align: center;
  }
}
.about-page .tc-box .list-box ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background-color: #000;
}
@media (min-width: 320px) and (max-width: 767px) {
  .about-page .tc-box .list-box ul li::before {
    display: none;
  }
}
.about-page .tc-box .list-box ul li span {
  font-weight: 700;
}
.about-page .tc-box .list-box ul li:last-child {
  margin-bottom: 0;
}

.event-page {
  padding: 140px 0 64px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .event-page {
    padding: 120px 0 40px;
  }
}
.event-page .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .event-page .list {
    gap: 24px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .event-page .list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.event-page .list .list-item:hover .img img {
  transform: scale(1.03);
}
.event-page .list .list-item .img {
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .event-page .list .list-item .img {
    height: 300px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .event-page .list .list-item .img {
    height: 220px;
  }
}
.event-page .list .list-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
}
.event-page .list .list-item .detail {
  position: relative;
  z-index: 2;
  background-color: #fff;
  width: 80%;
  margin: -64px auto 0;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
@media (min-width: 320px) and (max-width: 1023px) {
  .event-page .list .list-item .detail {
    width: 94%;
    padding: 14px;
    margin: -32px auto 0;
  }
}
.event-page .list .list-item .detail .date {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.event-page .list .list-item .detail .date .date_item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-color-dark);
}
.event-page .list .list-item .detail .date .date_item span {
  color: var(--main-color);
}
.event-page .list .list-item .detail .date .date_item span svg {
  width: 16px;
}
.event-page .list .list-item .detail .tt {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color-dark);
  margin: 0 0 14px;
  position: relative;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .event-page .list .list-item .detail .tt {
    font-size: 16px;
  }
}
.event-page .list .list-item .detail .tt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 10%;
  height: 1px;
  background-color: var(--main-color);
}
.event-page .list .list-item .detail .desc {
  font-size: 14px;
  color: var(--color-dark);
}
@media (min-width: 320px) and (max-width: 1023px) {
  .event-page .list .list-item .detail .desc {
    font-size: 12px;
  }
}
.event-page .list .list-item .detail .loc {
  border-bottom: 1px solid #ececec;
  padding-bottom: 8px;
  margin: 14px 0 14px;
  display: flex;
  align-items: center;
}
.event-page .list .list-item .detail .loc span {
  color: var(--main-color);
  margin-right: 8px;
}
.event-page .list .list-item .detail .loc span svg {
  width: 16px;
}
.event-page .list .list-item .detail .loc p {
  font-size: 12px;
  color: var(--text-color-dark);
  margin: 0;
}
.event-page .list .list-item .detail .btn .more {
  display: block;
  width: max-content;
  margin: 0 0 0 auto;
  background-color: var(--main-color);
  padding: 12px 32px;
  color: #fff;
  border-radius: 500px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .event-page .list .list-item .detail .btn .more {
    padding: 6px 24px;
    font-size: 14px;
  }
}

.scholarship-page {
  padding: 140px 0 64px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .scholarship-page {
    padding: 120px 0 40px;
  }
}
.scholarship-page .tc-box {
  max-width: 800px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .scholarship-page .tc-box {
    padding: 0 14px;
  }
}
.scholarship-page .tc-box .uk-subnav li {
  margin-bottom: 12px;
}
.scholarship-page .tc-box .uk-subnav li.uk-active a, .scholarship-page .tc-box .uk-subnav li:hover a {
  background-color: var(--main-color);
  color: #fff;
  box-shadow: 0 0 20px -4px rgba(0, 0, 0, 0.3);
}
.scholarship-page .tc-box .uk-subnav li a {
  border-radius: 2px;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .scholarship-page .tc-box .uk-subnav li a {
    font-size: 12px;
  }
}
.scholarship-page .tc-box .js-filter .uk-card-default {
  color: var(--text-color-dark);
  border-radius: 8px;
  padding: 24px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .scholarship-page .tc-box .js-filter .uk-card-default {
    padding: 14px;
    font-size: 14px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .uk-modal .uk-modal-body {
    padding: 32px 14px 14px;
  }
}
.uk-modal .uk-modal-body .modal-body .tt {
  font-size: 20px;
  color: var(--main-color);
  margin-bottom: 12px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .uk-modal .uk-modal-body .modal-body .tt {
    text-align: center;
    margin-bottom: 8px;
  }
}
.uk-modal .uk-modal-body .modal-body .desc p {
  color: var(--color-dark);
  font-size: 14px;
}
@media (min-width: 320px) and (max-width: 767px) {
  .uk-modal .uk-modal-body .modal-body .desc p {
    text-align: center;
  }
}

.check-user {
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 140px 0 60px;
}
.check-user .check-user-content {
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  max-width: 640px;
  width: 100%;
}
@media (min-width: 320px) and (max-width: 767px) {
  .check-user .check-user-content {
    padding: 14px;
    width: 86vw;
  }
}
.check-user .check-user-content .uk-table {
  margin-bottom: 0;
}
@media (min-width: 320px) and (max-width: 767px) {
  .check-user .check-user-content .uk-table {
    width: 640px;
    margin-bottom: 14px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .check-user .check-user-content .uk-table th {
    font-size: 13px;
    padding: 4px 8px;
  }
}
.check-user .check-user-content .uk-table td {
  text-align: left;
  color: var(--text-color-dark);
}
@media (min-width: 320px) and (max-width: 767px) {
  .check-user .check-user-content .uk-table td {
    padding: 4px 8px;
    font-size: 13px;
  }
}
.check-user .check-user-content p, .check-user .check-user-content h1, .check-user .check-user-content h6 {
  font-family: var(--main-font);
}
.check-user .check-user-content h1 {
  margin: 6px 0 18px;
  font-size: 48px;
  color: var(--text-color-dark);
}
@media (min-width: 320px) and (max-width: 767px) {
  .check-user .check-user-content h1 {
    font-size: 24px;
  }
}
.check-user .check-user-content h6 {
  margin: 0;
  font-size: 16px;
}
.check-user .check-user-content .rd {
  margin-top: 8px;
}
.check-user .check-user-content .rd h5 {
  font-family: var(--main-font);
  margin: 0;
  font-size: 14px;
}
.check-user .check-user-content .rd span {
  display: block;
  font-size: 14px;
  color: #f0506e;
  margin: 0;
}
.check-user .check-user-content form {
  margin-top: 8px;
}
.check-user .check-user-content form .uk-search-input {
  border-radius: 6px;
  color: var(--text-color-dark);
}
.check-user .check-user-content form .uk-search-input:focus {
  border-color: var(--text-color-dark);
}
.check-user .check-user-content form button {
  width: max-content;
  padding: 0 48px;
  height: 40px;
  margin-top: 12px;
  border: 1px solid var(--main-color);
  border-radius: 500px;
  background-color: transparent;
  cursor: pointer;
  color: var(--main-color);
  font-size: 14px;
  text-transform: uppercase;
  font-family: var(--main-font);
  font-weight: 700;
  transition: 0.3s ease;
  letter-spacing: 1.1px;
}
.check-user .check-user-content form button:hover {
  border: 1px solid var(--main-color);
  color: #fff;
  background-color: var(--main-color);
}
.check-user .check-user-content .file-box {
  text-align: left;
  width: 100%;
  margin-bottom: 12px;
}
.check-user .check-user-content .file-box .tt {
  margin: 12px 0;
  padding: 12px 12px;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  color: #999;
}
@media (min-width: 320px) and (max-width: 767px) {
  .check-user .check-user-content .file-box .tt {
    margin: 8px 0;
    padding: 12px 8px;
    font-size: 13px;
    text-align: center;
  }
}
.check-user .check-user-content .file-box .list .list-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #ececec;
  padding-bottom: 12px;
}
.check-user .check-user-content .file-box .list .list-item p {
  margin: auto 32px auto 0;
  color: var(--text-color-dark);
}
@media (min-width: 320px) and (max-width: 767px) {
  .check-user .check-user-content .file-box .list .list-item p {
    font-size: 13px;
  }
}
.check-user .check-user-content .file-box .list .list-item a {
  border-radius: 500px;
  border: 1px solid #0084dc;
  color: #0084dc;
  font-weight: 700;
}
@media (min-width: 320px) and (max-width: 767px) {
  .check-user .check-user-content .file-box .list .list-item a {
    padding: 0 12px;
    line-height: 30px;
    font-size: 13px;
  }
}
.check-user .check-user-content .social {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.check-user .check-user-content .social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background-color: #fff;
  border-radius: 500px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.check-user .check-user-content .social a.fb {
  background-color: rgb(66, 103, 178);
}
.check-user .check-user-content .social a.yt {
  background-color: rgb(255, 0, 0);
}
.check-user .check-user-content .not-user {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--main-font);
}
.check-user .check-user-content .not-user span {
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  color: var(--text-color-dark);
  text-align: center;
}
.check-user .check-user-content .not-user a {
  color: var(--main-color);
  text-decoration: underline;
  padding: 2px 12px;
  margin-top: 4px;
  display: block;
}
.check-user .check-user-content .user-info {
  display: none;
}
@media (min-width: 320px) and (max-width: 1023px) {
  .check-user .check-user-content .user-info {
    display: block;
  }
}
.check-user .check-user-content .user-info .user-item {
  margin-bottom: 12px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 12px;
}
.check-user .check-user-content .user-info .user-item:last-child {
  border-bottom: none;
}
.check-user .check-user-content .user-info .user-item span {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.check-user .check-user-content .user-info .user-item p {
  font-size: 14px;
  margin: 0;
  color: var(--text-color-dark);
  font-weight: 600;
}

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