@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --body-bg: #ffffff;
  --section-bg: #f1f1f3;
  --white: #ffffff;
  --border: #e5e7eb;
  --fonts: "Pretendard", sans-serif;
  --primary-50: #f1faed;
  --primary-100: #eff9e0;
  --primary-200: #d4efab;
  --primary-300: #91c24b;
  --primary-400: #709f2b;
  --primary-500: #2b550a;
  --system-red: #ff3333;
  --system-green: #5eab26;
  --intro-green: #72af80;
  --grey-900: #292a2e;
  --grey-800: #464953;
  --grey-700: #71788e;
  --grey-600: #8e93a4;
  --grey-500: #b7bbc8;
  --grey-400: #d3d6de;
  --grey-300: #e5e7eb;
  --grey-200: #f1f1f3;
  --footer: #f9fff5;
  --fafa: #fafafa;
  --shadow: 0px 11px 15px rgba(0, 0, 0, 0.02), 0px 5px 10px rgba(0, 0, 0, 0.03),
    2px 1px 5px rgba(0, 0, 0, 0.05);
}

html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  color: var(--grey-700);
  line-height: 1.5;
  overflow-x: hidden;
  font-family: var(--fonts);
  background: var(--body-bg);
  font-size: clamp(0.875rem, 0.8vw + 0.25rem, 1rem);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.3;
  color: var(--grey-900);
  font-family: var(--fonts);
  font-weight: 700;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: var(--grey-900);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: var(--primary-500);
}

h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem) !important;
  /* ~40px to 64px */
}

h2 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem) !important;
  /* ~32px to 48px */
  line-height: 1.5;
}

h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem) !important;
  /* ~24px to 40px */
  line-height: 1.5;
}

h4 {
  font-size: clamp(1.25rem, 1.2vw + 0.5rem, 1.5rem) !important;
  /* ~20px to 24px */
  line-height: 1.4;
}

h5,
h6 {
  font-size: clamp(0.875rem, 0.8vw + 0.25rem, 1rem) !important;
  /* ~14px to 16px */
}

a {
  display: inline-block;
  transition: all ease 0.3s;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

label,
button,
select {
  cursor: pointer;
}

input,
textarea {
  width: 100%;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.font-italic {
  font-style: italic;
}

.font-underline {
  text-decoration: underline;
}

.text-xs {
  font-size: clamp(0.625rem, 0.5vw + 0.25rem, 0.875rem);
  /* ~10px to 14px */
}

.bg-gradient-1 {
  background: linear-gradient(45deg, #dfdedd 18%, #c7c6c5 82%);
}

.bg-gradient-2 {
  background: linear-gradient(45deg, #2a2b29 18%, #171615 82%);
}

.bg-gradient-3 {
  background: linear-gradient(45deg, #7b7a79 18%, #535251 82%);
}

@media (min-width: 1200px) {
  .container {
    max-width: 1270px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* == Footer == */
footer {
  padding: 40px 0;
  background: var(--footer);
  color: var(--grey-600);
  font-weight: 500;
}

@media (min-width: 992px) {
  footer {
    font-weight: 600;
  }
}

footer .footer-logo {
  display: block;
  width: 159px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  footer .footer-logo {
    margin-inline: auto;
  }
}

footer .links li a {
  display: inline-block;
  color: var(--grey-600);
  text-decoration: none;
}

footer .links li a:hover {
  color: var(--primary-500);
}

footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footer-wrapper .copyright {
  width: 0;
  flex-grow: 1;
}

footer .footer-wrapper .links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}

footer .footer-wrapper .links li a {
  padding: 5px;
}

@media (max-width: 767px) {
  footer .footer-wrapper {
    flex-wrap: wrap-reverse;
    text-align: center;
    gap: 16px;
  }

  footer .footer-wrapper .links,
  footer .footer-wrapper .copyright {
    width: 100%;
    justify-content: center;
  }
}
/* == Footer == */
.search-form {
  position: relative;
}

.search-form .form-control {
  border-color: var(--primary-300);
  height: 50px;
  border-radius: 99px;
  font-size: 16px;
  padding-right: 50px;
}

@media (min-width: 992px) {
  .search-form .form-control {
    height: 60px;
    font-size: 20px;
    padding-left: 24px;
    padding-right: 70px;
  }
}

.search-form .search {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60px;
  border-radius: 99px;
  outline: none;
  box-shadow: none;
  border: none;
  background: transparent;
  font-size: 20px;
  color: var(--grey-600);
}

.header-section {
  padding: 21px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
}

@media (max-width: 991px) {
  .header-section {
    padding: 10px 0;
  }
}

.header-section .container {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .header-section .container {
    padding-inline: 40px;
  }
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

@media (min-width: 1200px) {
  .nav-wrapper {
    gap: 40px;
  }
}

.nav-wrapper .search-form {
  margin-right: auto;
}

.nav-wrapper .links {
  display: flex;
  gap: 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-900);
}

.nav-wrapper .links li {
  position: relative;
}

.nav-wrapper .links li a {
  color: var(--grey-900);
  text-decoration: none;
}

@media (min-width: 1400px) {
  .nav-wrapper .links {
    gap: 32px;
    font-size: 24px;
  }
}

.nav-wrapper .dropdown-menu {
  padding: 28px 20px 20px;
  border: none;
  box-shadow: var(--shadow);
  font-size: clamp(14px, 3.4vw, 20px);
  font-weight: 500;
  width: 100vw;
  max-width: 455px;
}

.nav-wrapper .dropdown-menu .subtitle {
  margin-bottom: 8px;
  font-size: clamp(16px, 3.4vw, 24px);
  font-weight: 700;
}

.nav-wrapper .dropdown-menu a {
  padding: 20px;
}

.nav-wrapper .dropdown-menu a p {
  color: var(--grey-700);
  margin: 0;
}

.nav-wrapper .dropdown-menu a:hover {
  background: #f1faed;
  color: var(--primary-500);
}

@media (max-width: 991px) {
  .nav-wrapper .dropdown-menu {
    max-width: 350px;
  }
}

@media (max-width: 991px) and (min-width: 576px) {
  .nav-wrapper .dropdown-menu {
    font-size: 16px;
    padding: 20px;
  }

  .nav-wrapper .dropdown-menu .subtitle {
    font-size: 19px;
  }
}

@media (min-width: 1400px) {
  .nav-wrapper .search-form {
    width: 100%;
    max-width: 591px;
  }
}

@media (max-width: 1199px) {
  .nav-wrapper .search-form .form-control {
    font-size: 16px;
  }

  .nav-wrapper .links {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .nav-wrapper .language {
    font-size: 18px;
    font-weight: 700;
    margin-left: auto;
  }

  .nav-wrapper .language a {
    color: var(--grey-900);
    text-decoration: none;
  }
}

@media (max-width: 576px) {
  .nav-wrapper .language {
    font-size: 16px;
    font-weight: 500;
    margin-left: auto;
  }

  .nav-wrapper .language a {
    color: var(--grey-900);
    text-decoration: none;
  }
}

.close-menu {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--system-red);
}

.hamburger {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 24px;
}

.text-primary-400 {
  color: var(--primary-400) !important;
}

@media (min-width: 992px) {
  .nav-menu-area {
    display: flex;
    flex-grow: 1;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .nav-menu-area {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    background: var(--white);
    border-left: 1px solid var(--grey-100);
    z-index: 999;
    padding: 20px;
    width: 100vw;
    max-width: 400px;
    padding-top: 70px;
    transition: all ease 0.3s;
  }

  .nav-menu-area .links {
    flex-direction: column;
    padding: 24px;
  }

  .nav-menu-area:not(.active) {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }
}

@media (min-width: 992px) {
  body {
    padding-top: 30px;
  }
}
/* Banner Section */
.intro-section {
  padding: 140px 0 130px;
}

@media (max-width: 767px) {
  .intro-section {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

.intro-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 60px;
  column-gap: 30px;
}

.intro-wrapper .intro-content {
  width: 0;
  flex-grow: 1;
  max-width: 797px;
}

.intro-wrapper .intro-content .subtitle {
  margin-bottom: 4px;
  text-shadow: 0px 11px 15px rgba(0, 0, 0, 0.02),
    0px 5px 10px rgba(0, 0, 0, 0.03), 2px 1px 5px rgba(0, 0, 0, 0.05);
  color: var(--white);
}

.intro-wrapper .intro-content .subtitle span {
  color: var(--intro-green);
}

@media (min-width: 1200px) {
  .intro-wrapper .intro-content .subtitle {
    font-size: 40px !important;
  }
}

.intro-wrapper .intro-content .title {
  margin-bottom: 40px;
  max-width: 738px;
  font-weight: 800;
  line-height: 1.4;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .intro-wrapper .intro-content .title {
    font-size: 48px !important;
  }
}

.intro-wrapper .intro-cards {
  width: 294px;
}

@media (max-width: 991px) {
  .intro-wrapper .intro-cards {
    width: 100%;
  }
}

.intro-cards {
  display: grid;
  grid-column: 1;
  gap: 30px;
}

.intro-cards .intro-card {
  display: flex;
  flex-direction: column;
  padding: 33px 37px 26px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  color: var(--grey-800);
}

.intro-cards .intro-card .subtitle {
  margin-bottom: 25px;
}

.intro-cards .intro-card .intro-card-btn {
  margin-top: auto;
  background: var(--white);
  border-radius: 99px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  color: var(--grey-900);
  text-decoration: none;
  align-items: center;
}

.intro-cards .intro-card .intro-card-btn:hover {
  background: var(--primary-400);
  color: var(--white);
}

@media (min-width: 768px) {
  .intro-cards .intro-card {
    min-height: 260px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .intro-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 9px 11px 9px 25px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  color: var(--grey-900);
}

@media (min-width: 768px) {
  .intro-btn {
    gap: 28px;
    font-size: 20px;
  }
}

.intro-btn:hover {
  color: var(--primary-500);
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 576px) {
  .intro-btn img {
    width: 40px;
  }
}
/* Banner Section */
/* Partner Section */
.partner-section {
  padding: 28px 0;
}

#partner-slider .swiper {
  overflow: visible;
}

#partner-slider .swiper-wrapper {
  align-items: anchor-center;
}

#partner-slider .swiper-slide {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#partner-slider .swiper-slide img {
  max-width: 100%;
}

@media (max-width: 576px) {
  #partner-slider .swiper-slide img {
    max-height: 40px;
  }
}
/* Partner Section */
/*Fonts*/
/* Italic style (if supported) */
@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/PretendardVariable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
}
/* Normal style */
@font-face {
  font-family: "Pretendard";
  src: url("../fonts/pretendard/PretendardVariable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
}

.notice-section {
  padding: 60px 0;
}

.notice-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  max-width: 1266px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .notice-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .notice-wrapper .notice-slider {
    max-width: 584px;
  }

  .notice-wrapper .notice-area {
    max-width: 532px;
    margin: 0 auto;
  }
}

.notice-wrapper .notice-area .title {
  font-size: 24px;
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 10px;
  border-bottom: rgba(41, 42, 46, 0.9) solid 1px;
  margin-bottom: 18px;
}

.notice-wrapper .notice-area .notice-list .notice-item {
  padding: 15px 20px;
  display: block;
  text-decoration: none;
  color: var(--grey-800);
}

.notice-wrapper .notice-area .notice-list .notice-item h6 {
  color: #000;
  font-weight: 700;
}

.notice-wrapper .notice-area .notice-list .notice-item:hover {
  background: var(--primary-100);
}

@media (min-width: 1200px) {
  .notice-wrapper .notice-area .notice-list .notice-item {
    font-size: 20px;
  }

  .notice-wrapper .notice-area .notice-list .notice-item h6 {
    font-size: 24px !important;
  }
}

.notice-slide-card {
  border-radius: 20px;
  padding: 36px 40px 30px;
}

.notice-slide-card .subtitle {
  color: var(--white);
  font-weight: 800 !important;
  margin-bottom: 36px;
}

@media (min-width: 992px) {
  .notice-slide-card .subtitle {
    font-size: 40px !important;
    line-height: 48.33px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1200px) {
  .notice-slide-card .subtitle {
    font-size: 48px !important;
    line-height: 58.33px;
    margin-bottom: 100px;
  }
}

.notice-slide-card .notice-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 20px;
  color: var(--grey-900);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

@media (min-width: 1200px) {
  .notice-slide-card .notice-btn {
    padding-inline: 30px;
  }
}

.notice-slide-card .notice-btn:hover {
  color: var(--primary-500);
  background: rgba(255, 255, 255, 0.9);
}

.weekly-highlights {
  padding-top: 20px;
  padding-bottom: 40px;
}

.weekly-highlights .swiper {
  overflow: visible;
}

.weekly-highlights-title {
  font-weight: 800;
  color: var(--grey-800);
  margin-bottom: 40px;
}

.weekly-highlights-title span {
  color: var(--primary-300);
}

@media (min-width: 1200px) {
  .weekly-highlights-title {
    font-size: 64px !important;
    margin-bottom: 60px;
  }
}

.weekly-highlights-content {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}

.weekly-highlights-content .title-area {
  width: 190px;
  position: relative;
  z-index: 99;
}

.weekly-highlights-content .title-area .subtitle {
  font-weight: 600;
  color: var(--grey-800);
  margin-bottom: 20px;
}

.weekly-highlights-content .title-area a {
  display: inline-block;
}

@media (max-width: 767px) {
  .weekly-highlights-content .title-area a {
    width: 40px;
  }
}

.weekly-highlights-content .title-area a img {
  max-width: 100%;
}

.weekly-highlights-content .content-area {
  width: 100%;
}

@media (min-width: 768px) {
  .weekly-highlights-content .content-area {
    padding-left: 10px;
    width: 0;
    flex-grow: 1;
    position: relative;
  }

  .weekly-highlights-content .content-area::before {
    content: "";
    width: 50vw;
    right: 100%;
    top: 0;
    height: 100%;
    background: white;
    position: absolute;
    z-index: 10;
  }
}

.weekly-highlights-content .content-area .swiper-slide {
  width: auto;
  display: flex;
  flex-direction: column;
  height: auto;
}

.highlight-slider {
  padding: 20px 0;
}

@media (min-width: 768px) {
  .highlight-slider {
    padding: 40px 0;
  }
}

.highlight-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  padding: 20px 20px 22px;
  background: var(--fafa);
  box-shadow: var(--shadow);
  height: 100%;
  text-decoration: none;
  width: 280px;
}

.highlight-card .card-badge,
.highlight-card .card-badge-txt {
  padding: 5px 15px;
  font-weight: 500;
  font-size: 14px;
}

@media (min-width: 768px) {
  .highlight-card .card-badge,
  .highlight-card .card-badge-txt {
    font-size: 16px;
  }
}

.highlight-card .card-badge {
  color: var(--white);
  background: var(--primary-500);
}

.highlight-card .card-badge-txt {
  color: var(--grey-800);
}

@media (min-width: 768px) {
  .highlight-card {
    width: 400px;
    padding: 20px 40px 22px;
  }
}

.highlight-card p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.privacy-section {
  background: var(--primary-100);
  padding: 60px 0;
}

.privacy-section-header {
  text-align: center;
  font-weight: 300;
  max-width: 814px;
  margin: 0 auto;
  color: var(--grey-900);
}

.privacy-section-header .title {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .privacy-section-header {
    font-size: 20px;
  }
}

.privacy-content-section {
  padding: 60px 0;
}

.privacy-content {
  max-width: 1125px;
  margin: 0 auto;
}

.privacy-content .item {
  margin-bottom: 40px;
  font-weight: 300;
  color: var(--grey-900);
}

.privacy-content .item .title {
  font-weight: 500;
}

.privacy-content .item p {
  margin-bottom: 0;
}

.privacy-content .item ul {
  padding: 0;
  margin: 0;
  padding-left: 16px;
}

.privacy-content .item ul li {
  display: flex;
}

.privacy-content .item ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 10px;
  transform: translateY(12px);
}

@media (min-width: 768px) {
  .privacy-content .item {
    font-size: 20px;
    margin-bottom: 66px;
  }

  .privacy-content .item .title {
    font-size: 20px !important;
  }
}

.privacy-content .item:last-child {
  margin-bottom: 0;
}

.login-section {
  padding: 108px 0 120px;
}

.login-content {
  max-width: 529px;
  padding: 40px 40px 40px;
  border-radius: 10px;
  background: var(--white);
  margin: 0 auto;
}

.login-content .title {
  margin: 0;
  text-align: center;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .login-content .title {
    font-size: 32px !important;
    margin-bottom: 41px;
  }
}

.form-group .form-label {
  padding-inline: 10px;
  margin: 0;
  margin-bottom: 10px;
  font-weight: 500;
  color: #6d6d6d;
}

@media (min-width: 992px) {
  .form-group .form-label {
    font-size: 20px;
  }
}

.form-control {
  background-color: var(--fafa);
  border: 1px solid #bdbdbd;
  height: 44px;
  border-radius: 10px;
  box-shadow: none !important;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-400);
}

@media (min-width: 992px) {
  .form-control {
    font-size: 20px;
    height: 64px;
  }
}

.form-control::placeholder {
  color: #b7bbc8;
  padding-inline: 16px;
}

.mb-30 {
  margin-bottom: 30px;
}

.forget-link {
  color: #2b550a;
  font-weight: 700;
}

@media (min-width: 992px) {
  .forget-link {
    font-size: 20px;
  }
}

.forget-link:hover {
  color: var(--primary-400);
}

@media (min-width: 992px) {
  .contact-link {
    font-size: 24px;
  }
}

.contact-link a {
  color: var(--primary-300);
  font-weight: 700;
}

.contact-link a:hover {
  text-decoration: none;
  color: var(--primary-500);
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-70 {
  margin-bottom: 70px;
}

.submit-btn-2,
.submit-btn {
  background: var(--primary-300);
  color: var(--white);
  width: 100%;
  max-width: 258px;
  height: 44px;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  padding-inline: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn-2:hover,
.submit-btn:hover {
  background: var(--primary-400);
  color: var(--white);
}

@media (min-width: 992px) {
  .submit-btn-2,
  .submit-btn {
    height: 64px;
    font-size: 24px;
    padding-inline: 40px;
  }
}

.submit-btn-2[disabled],
.submit-btn[disabled] {
  background: var(--grey-200);
  color: var(--grey-700);
  cursor: not-allowed;
}

.submit-btn-2 {
  background: var(--primary-100);
  color: #2f2f2f;
  width: auto;
}

.forget-password-modal {
  max-width: 566px;
}

.forget-password-modal .modal-body {
  padding: 30px;
  border-radius: 10px;
}

@media (min-width: 992px) {
  .forget-password-modal .modal-body {
    padding: 40px 60px;
  }
}

.forget-password-modal .modal-body .form-label {
  color: #2f2f2f;
}

.forget-password-modal .submit-btn-2,
.forget-password-modal .submit-btn {
  font-weight: 500;
}

.forget-password-modal .form-control {
  border-color: var(--primary-300);
}

.text-danger {
  color: var(--system-red) !important;
}

.gap-12px {
  gap: 12px;
}

.form--check .form-check-input:checked {
  background-color: var(--primary-300) !important;
  border-color: var(--primary-300) !important;
}

.form--check .form-check-input:checked::before {
  background-color: var(--primary-300) !important;
}

.form--check .form-check-label {
  color: var(--primary-500);
}

.form--check .form-check-label a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--primary-500);
}

@media (min-width: 768px) {
  .form--check {
    font-size: 20px;
  }

  .form--check .form-check-input {
    width: 24px;
    height: 24px;
  }

  .form--check .form-check-label {
    padding-left: 12px;
  }
}

.about-intro {
  padding-top: 98px;
  overflow: hidden;
  position: relative;
}

.about-intro-content {
  max-width: 666px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.about-intro-content .title {
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-intro-content p {
  max-width: 616px;
  margin: 0 auto;
  font-weight: 300;
  font-size: clamp(16px, 4vw, 18px);
  margin-bottom: 28px;
}

@media (min-width: 992px) {
  .about-intro-content p {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .about-intro-content p {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .about-intro-content .title {
    font-size: clamp(24px, 10vw, 48px) !important;
  }
}

.about-intro-img {
  max-width: 100%;
  pointer-events: none;
}

@media (min-width: 1200px) {
  .about-intro-img {
    transform: translateX(45px);
  }
}

.about-intro-shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .about-intro-shape {
    max-width: 900px;
  }
}

.about-mission {
  background: var(--primary-50);
  padding: 164px 0 160px;
}

@media (max-width: 767px) {
  .about-mission {
    padding: 100px 0;
  }
}

.about-mission-content {
  margin: 0 auto;
  max-width: 1043px;
}

.section-header {
  color: var(--grey-900);
  text-align: center;
}

.section-header .subtitle {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 18px;
  color: #868686;
}

.section-header .title {
  margin-bottom: 20px;
}

.section-header .title span {
  color: var(--primary-300);
}

.section-header .text {
  font-weight: 300;
  font-size: 18px;
  margin: 0;
}

@media (min-width: 992px) {
  .section-header .subtitle {
    font-size: 22px;
  }

  .section-header .text {
    font-size: 26px;
  }
}

@media (min-width: 1200px) {
  .section-header .subtitle {
    font-size: 24px;
  }

  .section-header .text {
    font-size: 32px;
  }
}

.counter-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1015px;
  margin: 0 auto;
  margin-top: 50px;
}

@media (min-width: 992px) {
  .counter-wrapper {
    margin-top: 130px;
  }
}

@media (max-width: 767px) {
  .counter-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    max-width: 300px;
    margin-inline: auto;
  }
}

.counter-wrapper .counter-item {
  padding: 0 37px;
  border-left: 1px solid var(--grey-900);
}

.counter-wrapper .counter-item .count {
  margin-bottom: 12px;
  line-height: 1.2;
}

.counter-wrapper .counter-item .subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--grey-900);
}

@media (max-width: 1199px) {
  .counter-wrapper .counter-item {
    padding-inline: 20px;
  }

  .counter-wrapper .counter-item .count {
    font-size: 30px !important;
    line-height: 1;
  }

  .counter-wrapper .counter-item .subtitle {
    font-size: 18px;
  }
}

.get-started {
  background: #f7f7f7;
  padding: 76px 0 86px;
}

.get-started-content {
  text-align: center;
}

.get-started-content .title {
  margin-bottom: 20px;
}

.get-started-content .text {
  color: #868686;
  max-width: 538px;
  margin: 0 auto 40px;
}

@media (min-width: 992px) {
  .get-started-content .text {
    font-weight: 500;
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .get-started-content .submit-btn {
    font-size: 20px;
    font-weight: 700;
    width: 100% !important;
  }
}

.services-section {
  padding: 60px 0;
}

.services-section .section-header {
  margin-bottom: 40px;
}

@media (min-width: 1200px) {
  .services-section .section-header {
    margin-bottom: 60px;
  }
}

.services-header {
  max-width: 550px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.services-header .subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: var(--grey-900);
  border-left: 4px solid var(--grey-900);
  padding-left: 16px;
}

@media (min-width: 992px) {
  .services-header .subtitle {
    font-size: 36px;
  }
}

.slider-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
}

.slider-buttons button {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
  border: none;
  box-shadow: none;
  outline: none;
  border-radius: 50%;
  width: 50px;
}

@media (min-width: 768px) {
  .slider-buttons button {
    font-size: 26px;
    width: 64px;
  }
}

.slider-seperator {
  height: 70px;
}

@media (max-width: 991px) {
  .slider-seperator {
    height: 50px;
  }
}

.service-card {
  padding: 20px;
  border-radius: 10px;
  background: #f7f7f7;
  height: 100%;
}

.service-card img {
  width: 50px;
  margin-bottom: 50px;
}

.service-card .subtitle {
  margin-bottom: 14px;
  font-size: 20px !important;
}

@media (min-width: 768px) {
  .service-card {
    font-size: 20px;
  }

  .service-card .subtitle {
    font-size: 24px !important;
  }

  .service-card img {
    margin-bottom: 100px;
  }
}

@media (min-width: 1200px) {
  .service-card {
    padding: 40px;
    font-size: 24px;
  }

  .service-card .subtitle {
    font-size: 36px !important;
  }

  .service-card img {
    width: 60px;
    margin-bottom: 150px;
  }
}

.service-card .text {
  margin: 0;
}

.service-slider-2,
.service-slider {
  overflow: visible;
}

.service-slider-2 .swiper-slide,
.service-slider .swiper-slide {
  height: auto;
}

@media (min-width: 1200px) {
  .service-slider-2 .swiper-slide,
  .service-slider .swiper-slide {
    width: 540px;
  }
}

.our-history {
  padding: 60px 0;
}

.history-slider-wrapper {
  position: relative;
}

.history-slider-wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  height: 2px;
  width: 100%;
  transform: translateY(-1px);
  background: var(--primary-300);
}

.history-slide-item {
  display: flex;
  flex-direction: column;
  color: var(--grey-900);
}

.history-slide-item .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 4px solid var(--primary-300);
  background: #f7f7f7;
}

.history-slide-item .shape {
  width: 20px;
  height: 50px;
  position: relative;
  display: flex;
  justify-content: center;
}

.history-slide-item .shape::before {
  display: block;
  content: "";
  background: var(--primary-300);
  width: 1px;
  height: 100%;
}

.history-slide-item .content {
  margin-top: 7px;
  padding-left: 8px;
}

.history-slide-item .date {
  font-weight: 300;
  font-size: 16px;
}

.history-slide-item .title {
  color: #000;
  font-size: 20px;
  margin-top: 4px;
  line-height: 1.2;
  min-height: 72px;
}

.history-slider .swiper-slide {
  width: auto;
}

.history-slider .swiper-slide:nth-child(even) .history-slide-item {
  flex-direction: column-reverse;
  margin-bottom: 155px;
}

.history-slider .swiper-slide:nth-child(odd) .history-slide-item {
  margin-top: 155px;
}

.search-result-header {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .search-result-header {
    margin-bottom: 40px;
  }
}

.search-result-header .title {
  margin-bottom: 0;
}

.search-results-section {
  padding: 120px 0 105px;
}

.gap-60px {
  gap: 60px;
}

@media (max-width: 767px) {
  .gap-60px {
    gap: 40px;
  }
}

.search-result-item {
  max-width: 1135px;
  margin: 0 auto;
  width: 100%;
}

.search-result-item .subtitle {
  padding: 20px 10px;
  color: var(--primary-500);
  border-bottom: 1px solid #71788e;
}

.search-results-table {
  min-width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--grey-900);
}

.search-results-table tr td {
  padding: 11px;
  border-bottom: 1px solid #b7bbc8;
}

@media (min-width: 992px) {
  .search-results-table tr td {
    padding: 22px 15px;
  }
}

.search-results-table .link {
  color: var(--grey-900);
  text-decoration: none;
}

.search-results-table .link:hover {
  color: var(--primary-400);
}

.see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  text-decoration: none;
  color: var(--grey-900);
  gap: 20px;
  background: var(--primary-100);
}

.see-more:hover {
  color: var(--primary-400);
}

.korean-search-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px 0 40px;
}

@media (min-width: 992px) {
  .korean-search-header {
    gap: 60px;
    padding: 100px 0 60px;
  }
}

.korean-search-header .content .title {
  margin-bottom: 20px;
}

.korean-search-header .content .subtitle {
  font-size: clamp(18px, 4vw, 24px);
  max-width: 486px;
  color: var(--grey-800);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .korean-search-header img {
    width: 390px;
  }
}

@media (max-width: 1199px) and (min-width: 768px) and (max-width: 991px) {
  .korean-search-header img {
    width: 300px;
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .korean-search-header .content .title {
    font-size: clamp(24px, 5vw, 48px) !important;
  }

  .korean-search-header .content .subtitle {
    font-size: clamp(18px, 4vw, 20px) !important;
  }
}

@media (max-width: 767px) {
  .korean-search-header {
    flex-direction: column;
  }

  .korean-search-header img {
    max-width: 100%;
  }

  .korean-search-header .content .subtitle {
    font-size: clamp(18px, 4vw, 20px) !important;
  }
}

.search-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 5px;
  color: var(--grey-900);
  padding: 0;
  margin: 0;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .search-breadcrumb {
    column-gap: 30px;
    margin-bottom: 64px;
  }
}

@media (min-width: 992px) {
  .search-breadcrumb {
    font-size: 20px;
  }
}

.search-breadcrumb li a {
  color: var(--grey-900);
  text-transform: uppercase;
  text-decoration: none;
}

.korean-search-form {
  padding: 60px 0;
}

@media (min-width: 992px) {
  .korean-search-form {
    padding-bottom: 100px;
  }
}

.search-form-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 576px) {
  .search-form-group {
    grid-template-columns: repeat(3, 1fr);
  }
}

.search-form-group .form-control,
.search-form-group .form-select {
  background-color: var(--primary-100);
  border-radius: 99px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  border: none;
  box-shadow: none;
  padding-inline: 12px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
  .search-form-group .form-control,
  .search-form-group .form-select {
    font-size: 20px;
    height: 60px;
    padding-inline: 20px;
  }
}

@media (max-width: 767px) {
  .search-form-group .form-control,
  .search-form-group .form-select {
    font-size: 14px;
  }
}

.search-form-group .form-select {
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.search-form-group .form-control,
.search-form-group .form-select {
  background-color: var(--primary-100);
}

.search-form-group .form-control.has-value,
.search-form-group .form-select.has-value {
  background-color: #d4efab;
}

.search-form-group .form-control {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.button-group .submit-btn,
.button-group .submit-btn-2,
.search-form-button .submit-btn,
.search-form-button .submit-btn-2 {
  font-weight: 500;
}

@media (max-width: 767px) {
  .button-group .submit-btn,
  .button-group .submit-btn-2,
  .search-form-button .submit-btn,
  .search-form-button .submit-btn-2 {
    width: 100%;
  }
}

.ai-search-section {
  padding: 100px 0;
}

@media (min-width: 992px) {
  .ai-search-section {
    padding-bottom: 170px;
  }
}

.ai-search-header {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.ai-search-header .content {
  max-width: 473px;
}

.ai-search-header .choose-target-partners {
  width: 100%;
  max-width: 628px;
}

.ai-search-header .choose-target-partners .choose-partner-badge {
  font-weight: 700;
  color: var(--grey-700);
  padding: 10px 30px;
  background: #f5f5f5;
  border-radius: 99px;
}

.ai-search-header .title {
  margin-bottom: 20px;
}

.ai-search-header .subtitle {
  font-size: clamp(18px, 4vw, 24px);
  max-width: 486px;
  color: var(--grey-800);
}

@media (max-width: 1199px) and (min-width: 768px) {
  .ai-search-header .content .title {
    font-size: clamp(24px, 5vw, 48px) !important;
  }

  .ai-search-header .content .subtitle {
    font-size: clamp(18px, 4vw, 20px) !important;
  }
}

@media (max-width: 991px) {
  .ai-search-header {
    flex-direction: column;
    gap: 50px;
  }

  .ai-search-header .content .subtitle {
    font-size: clamp(18px, 4vw, 20px) !important;
  }

  .ai-search-header img {
    max-width: 280px;
  }
}

.nav--tabs {
  border: none;
  background: #f5f5f5;
  border-radius: 99px;
  padding: 4px 8px;
}

.nav--tabs .nav-link {
  background: transparent;
  padding: 11px 20px;
  color: var(--grey-400);
  font-weight: 600;
  border-radius: 99px;
  border: none;
}

.nav--tabs .nav-link.active {
  background: var(--primary-300);
  color: var(--white);
  border: none;
}

.mt-60px {
  margin-top: 60px;
}

@media (max-width: 576px) {
  .mt-60px {
    margin-top: 40px;
  }
}

.mt-130px {
  margin-top: 130px;
}

@media (max-width: 767px) {
  .mt-130px {
    margin-top: 100px;
  }
}

@media (max-width: 576px) {
  .mt-130px {
    margin-top: 40px;
  }
}

.tab-content-text {
  background: #ffffff;
  border: 1px solid #eaeaea;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  font-weight: 500;
  color: #d3d3d3;
  padding: 24px;
}

@media (min-width: 576px) {
  .tab-content-text {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .tab-content-text {
    font-size: 20px;
    padding: 40px;
  }
}

.global-investor-search-table-section {
  padding-top: 60px;
  padding-bottom: 100px;
}

.global-investor-search-table-section .section-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .global-investor-search-table-section .table {
    min-width: 760px;
  }
}

.search-step-top {
  background: #f7f7f7;
  padding: 20px;
  color: var(--primary-500);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-weight: 500;
  font-size: clamp(16px, 4vw, 20px);
}

@media (min-width: 1200px) {
  .search-step-top {
    column-gap: 70px;
  }
}

.search-step-top .item {
  display: flex;
  align-items: center;
  gap: 22px;
}

.search-step-top .item .count {
  font-size: clamp(24px, 6vw, 32px);
}

.search-step-top .item .cont {
  max-width: 300px;
}

.search-step-top .item:nth-child(2) .cont {
  max-width: 340px;
}

.search-step-top.style-2 {
  font-size: 16px;
  display: grid;
}

@media (min-width: 992px) {
  .search-step-top.style-2 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.search-step-top.style-2 .item .cont {
  max-width: 280px !important;
}

.max-w-180px {
  max-width: 180px;
}

.table {
  min-width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--grey-900);
}

.table .max-w-180px {
  width: 180px;
}

.table tr th {
  background: var(--primary-100);
  padding: 11px;
  border: none;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .table tr th {
    padding: 22px 15px;
  }
}

.table tr td {
  padding: 11px;
  vertical-align: middle;
  border-bottom: 1px solid #b7bbc8;
}

@media (min-width: 992px) {
  .table tr td {
    padding: 22px 15px;
  }
}

.table .link {
  color: var(--grey-900);
  text-decoration: none;
}

.table .link:hover {
  color: var(--primary-400);
}

.form-check-input[type="checkbox"]:indeterminate {
  background-color: var(--primary-300);
}

.btn-group-2 button,
.btn-group-2 a {
  font-weight: 500;
  font-size: 18px;
}

@media (min-width: 576px) {
  .btn-group-2 button,
  .btn-group-2 a {
    font-size: 20px;
  }
}

.btn-group-2 .submit-btn-2:not(:hover) {
  background: var(--grey-200);
  color: var(--grey-700);
}

.steps-pagination {
  max-width: 291px;
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.steps-pagination span {
  display: block;
  background: var(--grey-300);
  width: 33.3333333333%;
  height: 8px;
  border-radius: 4px;
}

.steps-pagination .active {
  background: var(--grey-800);
}

.step-count {
  font-size: 16px;
  font-weight: 500;
  color: var(--grey-700);
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .step-count {
    font-size: 20px;
  }
}

.tutorial-wrapper {
  display: flex;
  gap: 40px;
}

.tutorial-wrapper .tutorial-content {
  width: 100%;
  max-width: 420px;
}

.tutorial-wrapper .tutorial-content .title {
  margin-bottom: 12px;
}

.tutorial-wrapper .tutorial-content .title span {
  color: #9ce334;
}

@media (min-width: 1200px) {
  .tutorial-wrapper .tutorial-content .title span {
    font-size: 48px;
    transform: translateY(5px);
    display: inline-block;
  }
}

@media (min-width: 1200px) {
  .tutorial-wrapper .tutorial-content .title.title-2 {
    font-size: 60px;
    font-weight: 700;
  }
}

.tutorial-wrapper .tutorial-content .text {
  font-size: 16px;
  font-weight: 500;
  min-height: 169px;
}

.tutorial-wrapper .tutorial-content .text.text-2 {
  min-height: 0;
}

@media (min-width: 992px) {
  .tutorial-wrapper .tutorial-content .text {
    font-size: 20px;
    min-height: 200px;
    letter-spacing: -0.03em;
  }

  .tutorial-wrapper .tutorial-content .text.text-2 {
    min-height: 0;
  }
}

@media (min-width: 1200px) {
  .tutorial-wrapper .tutorial-content .text {
    font-size: 24px;
    min-height: 229px;
    letter-spacing: -0.03em;
  }

  .tutorial-wrapper .tutorial-content .text.text-2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    min-height: 0;
  }
}

.tutorial-wrapper .tutorial-content .continue-button {
  margin-top: 30px;
}

@media (min-width: 992px) {
  .tutorial-wrapper .tutorial-content .continue-button {
    margin-top: 50px;
  }
}

.tutorial-wrapper .tutorial-image {
  width: 100%;
}
.tutorial-wrapper .tutorial-image .images {
  position: relative;
  width: 100%;
}
.tutorial-wrapper .tutorial-image img {
  max-width: 100%;
}
.tutorial-wrapper .tutorial-image.drop-shadow img {
  max-width: 100%;
  background: #fff;

  /* Drop Shadow */
  box-shadow: 0px 9.472px 12.917px 0px rgba(0, 0, 0, 0.05),
    0px 4.306px 8.611px 0px rgba(0, 0, 0, 0.03),
    1.722px 0.861px 4.306px 0px rgba(0, 0, 0, 0.05);
}
.tutorial-wrapper .tutorial-image img.tutorial-2-1-search {
  max-width: 83%;
}
.tutorial-wrapper .tutorial-image img.tutorial-2-1-search-result {
  max-width: 47.78%;
  position: absolute;
  right: 0;
  top: 75.33%;
}

.tutorial-wrapper .tutorial-image img.tutorial-2-3-search {
  max-width: 83%;
}
.tutorial-wrapper .tutorial-image img.tutorial-2-3-search-result {
  max-width: 47.44%;
  position: absolute;
  right: 0;
  top: 75.33%;
}
.tutorial-wrapper .tutorial-image ul {
  padding-top: 20px;
}
.tutorial-wrapper .tutorial-image li {
  color: #616161;
  list-style-type: disc;
  margin-left: 24px;
  font-size: 16px;
}
.tutorial-wrapper .tutorial-1 li {
  color: #212121;
  font-weight: 500 !important;
  line-height: 100%;
  letter-spacing: -0.48px;
  margin-bottom: 8px;
}
.tutorial-wrapper .tutorial-1 ul:first-child {
  margin-bottom: 24px;
}
.tutorial-wrapper .tutorial-image p {
  color: #616161;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.48px;
  margin: 0;
}

@media all and (max-width: 768px) {
  .tutorial-wrapper .tutorial-image li {
    font-size: 14px;
  }
  .tutorial-wrapper .tutorial-image p {
    font-size: 12px;
  }
}
@media all and (max-width: 425px) {
  .tutorial-wrapper .tutorial-image li {
    font-size: 12px;
  }
  .tutorial-wrapper .tutorial-image p {
    font-size: 12px;
  }
}
.tutorial-2-1 {
  padding-bottom: 12%;
}
.tutorial-2-1 p {
  padding-right: 62%;
}
.tutorial-1 p,
.tutorial-2-3 p {
  color: #464953 !important;
}

.tutorial-2-3 {
  padding-bottom: 12%;
}
.tutorial-2-3 p {
  padding-right: 55%;
}
.tutorial-2-3 .double-img {
  max-width: 83%;
  position: relative;
}
.tutorial-2-3 .double-img .tutorial-2-3-search {
  max-width: 100% !important;
}
.tutorial-2-3 img.tutorial-2-3-search-box {
  position: absolute;
  max-width: 337px;
  width: 46%;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 18px;
  z-index: 2;
}
@media all and (max-width: 1200px) {
  .tutorial-2-1 p {
    padding-right: 55%;
  }
  .tutorial-2-3 img.tutorial-2-3-search-box {
    border-radius: 5px;
  }
}
@media (max-width: 767px) {
  .tutorial-wrapper {
    flex-direction: column;
  }
}

.tutorial-wrapper .tutorial-2-2 .top-contents {
  display: flex;
  /* gap: 8px; */
}
.tutorial-wrapper .tutorial-2-2 .top-contents ul {
  max-width: 252px;
  padding-top: 0;
}
.tutorial-wrapper .tutorial-2-2 .tutorial-2-2-table {
  width: 64.77%;
}
.tutorial-wrapper .tutorial-2-2 .tutorial-2-2-contact-form {
  width: 51%;
  /* position: absolute; */
  right: 0;
  top: 30%;
  display: block;
  margin-left: auto;
  margin-top: -36%;
}

.tutorial-section {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .tutorial-section {
    padding: 60px 0;
  }
}

.continue-button {
  width: 221px;
  min-height: 63px;
  background: #9ce334;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  font-size: 20px;
  font-weight: 700;
  padding: 6px 8px;
  padding-left: 24px;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.continue-button:hover {
  color: var(--white);
  background: var(--primary-300);
}

@media (max-width: 767px) {
  .continue-button {
    font-size: 16px;
    min-height: 50px;
    width: auto;
  }

  .continue-button img {
    width: 40px;
  }
}

.continue-button.secondary {
  color: var(--grey-800);
  background: #e0e0e0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
}

.tutorial-bg {
  pointer-events: none;
  width: 100%;
  margin-top: -70px;
}

@media (max-width: 1023px) {
  .tutorial-bg {
    margin-top: -10px;
  }
}

.gap-20px {
  gap: 20px;
}

.tutorial-wrapper-2 .tutorial-content {
  max-width: 470px;
}

@media (max-width: 991px) {
  .tutorial-wrapper-2 .tutorial-content .continue-button {
    font-size: 18px;
    font-weight: 600;
    min-height: 50px;
    width: auto;
  }

  .tutorial-wrapper-2 .tutorial-content .continue-button img {
    width: 40px;
  }
}

@media (max-width: 767px) {
  .tutorial-wrapper-2 {
    flex-direction: column-reverse;
    gap: 60px;
  }

  .tutorial-wrapper-2 .tutorial-image {
    max-width: 350px;
    margin: 0 auto;
  }
}

.table-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 40px;
}

.table-pagination button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 12px;
  background: transparent;
  border-radius: 5px;
  font-weight: 500;
}

.table-pagination button.active {
  border: 1px solid var(--primary-300);
}

.ks-search-result {
  padding: 30px 25px;
  background: #f7f7f7;
  border-radius: 10px;
  margin-bottom: 40px;
}

.ks-search-result .result-count {
  font-size: 20px;
  border-bottom: 1px solid var(--grey-900);
  max-width: 227px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ks-search-result .result-count .count {
  font-size: 32px;
  font-weight: 700;
  color: var(--grey-900);
}

@media (max-width: 991px) {
  .ks-search-result .result-count {
    font-size: 16px;
  }

  .ks-search-result .result-count .count {
    font-size: 24px;
  }
}

.quick-info-table {
  min-width: 195px;
  font-weight: 500;
  color: var(--grey-900);
  border-collapse: separate;
  border-spacing: 15px 10px;
  font-size: 16px;
  font-weight: 700;
}

.quick-info-table td {
  padding: 0;
}

.ave-pre-money {
  font-size: 18px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .ave-pre-money {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.pre-value-slider {
  overflow: hidden;
}

.pre-value-slider .swiper-slide {
  width: auto;
  min-width: 120px;
}

.pre-value-slider .swiper-slide:first-child .circle::before {
  opacity: 0;
}

.pre-value-slider .swiper-slide:last-child .circle::after {
  opacity: 0;
}

.pre-value-slider .slide-item {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--grey-900);
}

.pre-value-slider .slide-item .circle {
  display: flex;
  align-items: center;
  margin: 20px auto;
}

.pre-value-slider .slide-item .circle span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--grey-900);
  display: block;
  margin: 0 auto;
}

.pre-value-slider .slide-item .circle::before,
.pre-value-slider .slide-item .circle::after {
  content: "";
  display: block;
  height: 1px;
  flex-grow: 1;
  background: var(--grey-900);
}

.search-modal .modal-title {
  font-size: 24px !important;
}

@media (min-width: 992px) {
  .search-modal .modal-title {
    font-size: 32px !important;
  }
}

.search-modal p {
  font-size: 16px;
}

.modal-table {
  min-width: 750px;
  width: 100%;
  font-size: 16px;
}

.modal-table tr th {
  padding: 10px;
  color: var(--grey-900);
  color: #464953;
  background: #f7f7f7;
}

.modal-table tr td {
  padding: 10px;
}

@media (min-width: 768px) {
  .modal-table {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .modal-table {
    font-size: 20px;
  }
}

.modal-table.text-normal {
  font-size: 16px;
}

.__badge-2,
.__badge {
  font-weight: 500;
  color: var(--white);
  background: var(--primary-500);
  padding: 8px 15px;
  display: block;
  cursor: pointer;
}

.__badge-2:hover,
.__badge:hover {
  background-color: #9ce334;
  color: var(--white);
}

.__badge-2 {
  background: var(--grey-800);
  color: var(--white);
}

.__badge-2:hover {
  background-color: #9ce334;
  color: var(--white);
}

.mb-20px {
  margin-bottom: 20px;
}

.modal-table-wrapper .title {
  font-size: 18px !important;
  padding: 9px 20px;
  color: var(--grey-900);
  background: var(--primary-100);
}

@media (min-width: 992px) {
  .modal-table-wrapper .title {
    font-size: 20px !important;
  }
}

.main-table-2 {
  font-size: 16px;
  color: var(--grey-900);
}

.main-table-2 h6 {
  font-weight: 600;
  font-size: 16px !important;
}

.main-table-2 ul li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey-900);
  margin-right: 8px;
  transform: translateY(-3px);
}

.tech .tech-item {
  padding: 10px 20px;
  border-bottom: 1px solid var(--grey-300);
  color: var(--grey-800);
}

@media (min-width: 768px) {
  .tech .tech-item {
    padding: 10px 30px;
  }
}

.tech .tech-item .subtitle {
  font-size: 16px !important;
  font-weight: 600;
  margin-bottom: 5px;
}

.tech .tech-item p {
  margin: 0;
}

/* new  */
.swiper-pagination {
  margin-top: 10px;
  position: relative;
  bottom: auto;
}
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
}

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