@font-face {
  font-family: Kanit;
  font-display: swap;
  src: url(../font-dir/Kanit-Bold.woff2) format("woff2"), url(../font-dir/Kanit-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Mulish;
  font-display: swap;
  src: url(../font-dir/Mulish-Bold.woff2) format("woff2"), url(../font-dir/Mulish-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Mulish;
  font-display: swap;
  src: url(../font-dir/Mulish-Regular.woff2) format("woff2"), url(../font-dir/Mulish-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --primary-color:#2c3189;
  --secondary-color:#D33C48;
  --accent-color:#e5ae35;
  --text-light:#f8f9f8;
  --text-dark:#333;
  --bg-light:#f8f9f8;
  --bg-dark:#000;
  --gray-light:#cdcfd3;
  --gray-medium:#677183;
}

body {
  font-family: Mulish, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: Kanit, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style-type: none;
}

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

.content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.qaBlockList h3{
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.btnAction{
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 12px;
  display: inline-flex;
}

.btnAction:hover {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.site-navbar {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-navbar .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand-header {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.menu-toggler {
  display: none;
  border: none;
  background: 0 0;
  cursor: pointer;
  font-size: 1rem;
}

.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.navigation-link {
  color: var(--text-dark);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

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

.navigation-link.register-btn {
  color: var(--primary-color);
  text-decoration: underline;
}

.navigation-link.free-tag {
  color: var(--secondary-color);
}

.fullview-section {
  padding-top: 66px;
  color: #fff;
}

.fullview-content {
  position: relative;
  min-height: 400px;
  display: grid;
  place-items: center;
}

.fullview-text {
  position: relative;
  z-index: 2;
  padding: 64px 32px;
  text-align: center;
}

.fullview-text > :not(:last-child) {
  margin-bottom: 1rem;
}

.fullview-header {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.fullview-illustration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fullview-illustration img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fullview-illustration:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
}

.main-masthead {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.initial-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.initial-paragraph {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}

.initial-paragraph h1 {
  font-size: 4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.initial-paragraph .primary-text {
  font-size: 1.5rem;
  color: var(--gray-medium);
}

.initial-device {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mockup-device {
  position: relative;
  max-width: 300px;
}

.device-svg {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 40px;
  left: 10px;
  z-index: 3;
}

.device-holder {
  position: relative;
}

.device-element {
  position: relative;
  z-index: 1;
}

.screen-area {
  position: relative;
  background-color: #000;
  border-radius: 30px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.device-screen-area {
  width: 100%;
  max-width: 250px;
}

.trusted-section-wrapper {
  background: linear-gradient(135deg, var(--primary-color), #6a11cb);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.trusted-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.trusted-header h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.trusted-logo-image {
  max-width: 80px;
}

.features-wrapper {
  padding: 100px 0;
}

.features-text-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.features-description {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.features-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-element {
  text-align: center;
}

.feature-description h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-description p {
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.features-device-block {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.features-device-mockup-wrapper {
  position: relative;
  max-width: 200px;
}

.text-margin > :not(:last-child):not(:first-child) {
  margin-bottom: 1rem;
}

.text-centered {
  text-align: center;
}

.text-big {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.text-md {
  font-family: Kanit, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.basic-section {
  padding: 50px 0;
}

.clean-section-white {
  background-color: #fff;
}

.basic-section-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.basic-section-image {
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

a:not([class]) {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: underline;
}

.standard-list li {
  position: relative;
  padding-left: 1.5rem;
}

.standard-list li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #3b2a99;
  border-radius: 99px;
}

.standard-list li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.ordered-list {
  list-style: none;
  counter-reset: myTR;
}

.ordered-list li {
  position: relative;
  padding-left: 1.5rem;
}

.ordered-list li:before {
  content: counter(myTR) ".";
  counter-increment: myTR;
  position: absolute;
  top: 0;
  left: 0;
  color: #3b2a99;
  font-weight: 700;
  border-radius: 99px;
}

.ordered-list li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.register-section {
  background-color: var(--bg-light);
  padding: 50px 0;
  text-align: center;
}

.register-section h2 {
  font-size: 2rem;
}

.register-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.download-wrapper {
  background: linear-gradient(135deg, var(--primary-color), #6a11cb);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.download-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.download-button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.download-action-btn {
  margin: 0 10px;
}

.download-action-btn img {
  height: 48px;
}

.closure-wrapper {
  background-color: var(--bg-dark);
  color: var(--gray-light);
  padding: 60px 0 30px;
}

.closure-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}

.closure-column {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.closure-column h5 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.closure-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.closure-link {
  color: var(--gray-light);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.closure-link:hover {
  color: #fff;
}

.closure-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.closure-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.social-link-item {
  color: #fff;
  font-size: 1.2rem;
}

@media (max-width: 991px) {
  .features-text-content, .initial-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .features-description, .initial-paragraph {
    margin-bottom: 50px;
  }
  .features-grid-container {
    grid-template-columns: 1fr;
  }
  .closure-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .closure-column {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .site-navbar .content-container {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .menu-collapse {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .nav-menu {
    display: none;
  }
  .menu-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 4px;
  }
  .menu-collapse.show .nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .carousel-caption h5 {
    font-size: 1.8rem;
  }
  .initial-paragraph h1 {
    font-size: 3rem;
  }
}