:root {
  --c1: #000000;
  --c2: #ffffff;
  --c3: #195c9d;
  --f1: "Inter", sans-serif;
  --f2: "Aeonic", sans-serif;
  --f3: "bootstrap-icons";
}

@font-face {
  font-family: Aeonic;
  src: url("../fonts/Aeonik-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: Aeonic;
  src: url("../fonts/Aeonik-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: Aeonic;
  src: url("../fonts/Aeonik-Bold.otf");
  font-weight: 700;
}
html, body {
  height: 100%;
}

body {
  font: 400 18px/30px var(--f1);
  color: #525c70;
}
body.fixed-bar header {
  position: fixed;
  top: 0;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
}
body.fixed-bar header .header-top {
  display: none;
}

.w1000 {
  max-width: 1000px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

a, .btn, button {
  transition: 0.3s linear;
}

.blk {
  color: var(--c1);
}

.preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background-color: rgba(9, 34, 69, 0.5);
}
.preloader .load {
  width: 50px;
  aspect-ratio: 1;
  color: #0a4181;
  --_c: no-repeat radial-gradient(farthest-side,currentColor 92%,#0000);
  background: var(--_c) 50% 0/12px 12px, var(--_c) 50% 100%/12px 12px, var(--_c) 100% 50%/12px 12px, var(--_c) 0 50%/12px 12px, var(--_c) 50% 50%/12px 12px, conic-gradient(from 90deg at 4px 4px, rgba(0, 0, 0, 0) 90deg, currentColor 0) -4px -4px/calc(50% + 2px) calc(50% + 2px);
  animation: l8 1s infinite linear;
}

@keyframes l8 {
  to {
    transform: rotate(0.5turn);
  }
}
.headspan {
  background-color: #d8e5ff;
  position: relative;
  margin: 0 0 10px;
  color: var(--c3);
  font: 500 14px/16px var(--f2);
  display: inline-block;
  padding: 6px 15px;
  border-radius: 30px;
  margin: 0 0 16px;
}
.headspan span {
  display: flex;
  align-items: center;
  gap: 2px;
}
.headspan .bi {
  margin: 0 5px 0 0;
}

.btn-link {
  font-weight: 700;
  color: var(--c3);
  text-decoration: none;
  position: relative;
  padding: 0 20px 0 0;
}
.btn-link::before {
  content: "\f135";
  font: 600 16px var(--f3);
  position: absolute;
  top: 3px;
  right: 0;
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
  text-decoration: underline;
}

.btn-theme {
  min-width: 100px;
  font: 600 16px var(--f1);
  padding: 15px 24px;
  background-color: var(--c3) !important;
  color: var(--c2) !important;
  border-radius: 40px;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(14, 69, 181, 0.25), 0 4px 6px -4px rgba(14, 69, 181, 0.25);
}
.btn-theme.btn-xs {
  min-width: auto;
  padding: 8px 15px;
  font-size: 13px;
}
.btn-theme.btn-sm {
  padding: 8px 15px;
  font-size: 13px;
  min-width: auto;
}
.btn-theme:hover, .btn-theme:focus, .btn-theme:active {
  transform: scale(0.95);
}

.btn-white {
  min-width: 100px;
  font: 600 16px var(--f1);
  padding: 15px 24px;
  background-color: var(--c2) !important;
  color: var(--c1) !important;
  border-radius: 40px;
  border: 1px solid #e5e7eb;
}
.btn-white.btn-xs {
  min-width: auto;
  padding: 8px 15px;
  font-size: 13px;
}
.btn-white.btn-sm {
  padding: 8px 15px;
  font-size: 13px;
  min-width: auto;
}
.btn-white:hover, .btn-white:focus, .btn-white:active {
  transform: scale(0.95);
}

.btn-gray {
  min-width: 100px;
  font: 600 16px var(--f1);
  padding: 15px 24px;
  background-color: #f3f0f4 !important;
  color: var(--c1) !important;
  border-radius: 40px;
  border: 1px solid #e5e7eb;
}
.btn-gray.btn-xs {
  min-width: auto;
  padding: 8px 15px;
  font-size: 13px;
}
.btn-gray.btn-sm {
  padding: 8px 15px;
  font-size: 13px;
  min-width: auto;
}
.btn-gray:hover, .btn-gray:focus, .btn-gray:active {
  background-color: #e2e3e8 !important;
}

header {
  width: 100%;
  background-color: var(--c2);
  position: absolute;
  top: 0;
  z-index: 999;
  transition: 0.3s linear;
}
header .header-top {
  background-color: var(--c3);
  padding: 5px;
}
header .header-top ul {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  margin: 0;
}
header .header-top ul li a {
  font: 500 15px var(--f1);
  color: var(--c2);
  text-decoration: none;
}
header .header-top ul li a:hover, header .header-top ul li a:focus, header .header-top ul li a:active {
  opacity: 0.8;
}
header .navbar {
  padding: 15px 0;
}
header .navbar .navbar-brand img {
  max-width: 80px;
}
header .navbar .navbar-collapse {
  justify-content: space-between;
}
header .navbar .navbar-collapse .navbar-flex {
  margin: 0 0 0 30px;
}
header .navbar .navbar-collapse .navbar-flex .navbar-nav {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 35px;
}
header .navbar .navbar-collapse .navbar-flex .navbar-nav > .nav-item > .nav-link {
  font: 500 15px var(--f1);
  color: #525c70;
  padding: 0;
}
header .navbar .navbar-collapse .navbar-flex .navbar-nav > .nav-item > .nav-link.active, header .navbar .navbar-collapse .navbar-flex .navbar-nav > .nav-item > .nav-link:hover {
  color: var(--c3);
}
header .navbar .header-right .navbar-nav {
  gap: 20px;
}
header .navbar .header-right .navbar-nav > .nav-item .nav-icon {
  width: 48px;
  height: 48px;
  background-color: #f6f6f9;
  border: 1px solid #dfdfdf;
  border-radius: 48px;
  color: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
}
header .navbar .header-right .navbar-nav > .nav-item .nav-icon img {
  width: 24px;
}
header .navbar .header-right .navbar-nav > .nav-item:last-child > .nav-link {
  font: 500 15px var(--f1);
  background-color: var(--c3);
  color: var(--c2);
  padding: 15px 24px;
  border-radius: 30px;
}
header .navbar .header-right .navbar-nav > .nav-item:last-child > .nav-link:hover {
  background-color: var(--c1);
  color: var(--c2);
}

footer {
  padding: 64px 0 32px;
}
footer .logo {
  max-width: 320px;
}
footer .logo img {
  height: 28px;
  margin: 0 0 16px;
}
footer .logo p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
footer article h5 {
  color: #0d121b;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
}
footer article ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer article ul li {
  line-height: normal;
}
footer article ul li a {
  color: #525c70;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}
footer article ul li a:hover, footer article ul li a:focus, footer article ul li a:active {
  color: var(--c3);
}
footer article ul li + li {
  margin: 8px 0 0;
}
footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 48px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid #f3f4f6;
}
footer .footer-bottom p {
  color: #525c70;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}
footer .footer-bottom ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
footer .footer-bottom ul li a {
  color: #525c70;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}
footer .footer-bottom ul li a:hover, footer .footer-bottom ul li a:focus, footer .footer-bottom ul li a:active {
  color: var(--c3);
}

section.banner {
  background: #f7f6f8;
  height: 100vh;
  padding: 160px 0 30px;
  color: var(--c2);
  display: flex;
  align-items: center;
}
section.banner .headspan {
  margin: 0;
}
section.banner .banner-caption {
  max-width: 700px;
  margin: auto;
  color: var(--c1);
}
section.banner .banner-caption .new {
  background-color: rgba(255, 255, 255, 0.0392156863);
  padding: 4px 16px 4px 4px;
  border: 1px solid rgba(30, 144, 255, 0.231372549);
  display: inline-block;
  font: 400 14px var(--f2);
  border-radius: 30px;
}
section.banner .banner-caption .new span {
  margin: 0 8px 0 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  background-color: var(--c3);
  padding: 4px 10px;
  border-radius: 40px;
}
section.banner .banner-caption h1 {
  margin: 12px 0 24px;
  font: 900 60px/70px var(--f1);
}
section.banner .banner-caption h1 strong {
  color: var(--c3);
}
section.banner .banner-caption p {
  max-width: 600px;
  margin: 0 0 45px;
  font: 400 18px/28px var(--f1);
}
section.banner .banner-caption .btn-sec {
  display: flex;
  gap: 24px;
}
section.banner .banner-caption .btn-sec .btn {
  min-width: 180px;
}
section.banner .img-sec img {
  border-radius: 16px;
  width: 100%;
}
section.banner article {
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
section.banner article img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}
section.banner.pbanner {
  height: auto;
  text-align: center;
  padding-bottom: 50px;
}
section.banner.pbanner .banner-caption p {
  margin: auto;
}
section.banner.pribanner {
  height: auto;
  padding: 180px 0 80px;
  text-align: center;
}
section.banner.pribanner h1 {
  margin: 0;
  font: 800 50px/60px var(--f1);
}
section.banner.cbanner {
  text-align: left;
  height: auto;
}
section.banner.cbanner .banner-caption {
  max-width: 800px;
  margin: 0;
}
section.banner.cbanner .banner-caption h1 {
  font-size: 48px;
  line-height: 48px;
  margin: 0 0 15px;
}
section.banner.cbanner .banner-caption p {
  opacity: 0.7;
  margin: 0;
}
section.banner.cbanner.subbanner .banner-caption {
  margin: auto;
}
section.banner.cbanner.subbanner .banner-caption p {
  margin: auto;
}
section.banner.confirmpage {
  height: 100vh !important;
  padding: 30px 0;
  background: url(../images/cloudbg.png) no-repeat;
}
section.banner.confirmpage .img-sec {
  text-align: center;
}
section.banner.confirmpage .img-sec img {
  width: calc(100% - 150px);
}
section.banner.confirmpage .banner-caption {
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 400px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 30px;
}
section.banner.confirmpage .banner-caption h1 {
  margin: 0 0 10px;
}
section.banner.confirmpage .banner-caption p {
  margin: 0 auto 20px;
}
section.dp {
  padding: 80px 0;
}
section.dp h3 {
  font: 700 36px/40px var(--f1);
  color: #0d121b;
}
section.dp.graybg {
  background-color: #f6f6f9;
}
section.dp.themebg {
  background-color: var(--c3);
}
section.dp .list-custom {
  list-style: none;
  padding: 0;
  margin: 0;
}
section.dp .list-custom li {
  color: #0d121b;
  position: relative;
  padding: 0 0 0 25px;
}
section.dp .list-custom li::before {
  content: "\f26b";
  font: 600 16px var(--f3);
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--c3);
}
section.dp .list-custom li + li {
  margin: 8px 0 0;
}
section.dp .phead {
  max-width: 800px;
  margin: 0 0 50px;
}
section.dp .tab-sec .tseclist {
  display: flex;
  justify-content: center;
}
section.dp .tab-sec .tseclist .listdiv {
  padding: 2px;
  border-radius: 30px;
  background-color: #eef5ff;
}
section.dp .tab-sec .tseclist .listdiv .nav {
  gap: 4px;
}
section.dp .tab-sec .tseclist .listdiv .nav .nav-item .nav-link {
  padding: 6px 20px;
  border-radius: 30px;
}
section.dp .tab-sec .tseclist .listdiv .nav .nav-item .nav-link.active {
  background-color: var(--c3);
}
section.darkbg {
  position: relative;
}
section.darkbg::before {
  content: "";
  background: var(--c1) url(../images/overlay.png) no-repeat 0 0/cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
section.darkbg h3 {
  color: var(--c2);
}
section.darkbg .headspan {
  background-color: transparent;
  border: 1px solid #0e45b5;
  color: var(--c2);
}
section.darkbg .container {
  position: relative;
  color: var(--c2);
}
section.s1 {
  text-align: center;
}
section.s1 article {
  max-width: 900px;
  margin: auto;
  padding: 0 16px;
}
section.s1 article .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 48px;
  background-color: #fee2e2;
  color: #dc2626;
}
section.s1 article h3 {
  margin: 0 0 24px;
}
section.s1.chaos .row {
  align-items: center;
}
section.s1.chaos .img-sec {
  width: calc(100% - 40px);
  position: relative;
}
section.s1.chaos .img-sec img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
section.s1.chaos .img-sec .testi {
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  max-width: 280px;
  text-align: left;
  background-color: var(--c2);
  position: absolute;
  bottom: -30px;
  right: -30px;
}
section.s1.chaos .img-sec .testi p {
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
  font-style: italic;
}
section.s1.chaos .img-sec .testi .media {
  display: flex;
  align-items: center;
  gap: 8px;
}
section.s1.chaos .img-sec .testi .media img {
  width: 32px;
  height: 32px;
  border-radius: 32px;
}
section.s1.chaos .img-sec .testi .media span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  color: var(--c1);
}
section.s1.chaos article {
  text-align: left;
}
section.s1.chaos article h3 {
  position: relative;
  margin: 0 0 50px;
}
section.s1.chaos article h3::before {
  content: "";
  width: 50px;
  height: 4px;
  background-color: var(--c3);
  border-radius: 4px;
  position: absolute;
  bottom: -20px;
}
section.trust p {
  font-size: 14px;
  text-align: center;
  margin: 0 0 30px;
  text-transform: uppercase;
  font-weight: 600;
  color: #525c70;
}
section.trust ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 50px;
}
section.trust ul li {
  color: #595959;
}
section.trust ul li .bi {
  font-size: 25px;
  margin: 0 5px 0 0;
}
section.trust ul li span {
  font-size: 18px;
  font-weight: 700;
}
section.statistics {
  padding: 50px 16px;
}
section.statistics article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
section.statistics article .material-symbols-outlined {
  font-size: 30px;
  color: var(--c3);
}
section.statistics article h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--c1);
  margin: 0 0 5px;
}
section.statistics article p {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0;
}
section.s2 .chatimg {
  background-color: #f3f4f6;
  position: relative;
  height: 100%;
  margin: 0 48px 0 0;
  border-radius: 16px;
  overflow: hidden;
}
section.s2 .chatimg::before {
  content: "";
  background: linear-gradient(to top right, rgba(14, 69, 181, 0.05), transparent);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
section.s2 .chatimg img {
  width: 100%;
  height: 388px;
  object-fit: cover;
}
section.s3 article {
  padding: 32px;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--c2);
  border-radius: 24px;
  margin: 0 0 24px;
  min-height: 250px;
}
section.s3 article .icons {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
}
section.s3 article .icons .material-symbols-outlined {
  color: var(--c3);
}
section.s3 article h4 {
  font: 700 20px/28px var(--f1);
  color: #0d121b;
}
section.s3 article p {
  font-size: 16px;
  line-height: 24px;
  color: #525c70;
  margin: 0;
}
section.s4 h3 {
  font-weight: 900;
  color: var(--c2);
  text-align: center;
  margin: 0 0 64px;
}
section.s4 .row {
  position: relative;
}
section.s4 .row::before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 43px;
}
section.s4 article {
  text-align: center;
  color: var(--c2);
}
section.s4 article .icons {
  width: 96px;
  height: 96px;
  background-color: var(--c2);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 4px solid rgba(14, 69, 181, 0.3019607843);
  border-radius: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c3);
  margin: 0 auto 24px;
  position: relative;
}
section.s4 article .icons .material-symbols-outlined {
  font-size: 36px;
}
section.s4 article h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
section.s4 article p {
  font-size: 14px;
  line-height: 20px;
  margin: 0 10px;
}
section.s5 article.headart h3 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  margin: 0 0 24px;
}
section.s5 .fitrow article .media {
  display: flex;
  gap: 16px;
  background-color: var(--c2);
  border: 1px solid #e5e7eb;
  padding: 16px;
  border-radius: 16px;
}
section.s5 .fitrow article .media .mleft {
  color: var(--c3);
}
section.s5 .fitrow article .media .mbody * {
  margin: 0;
}
section.s5 .fitrow article .media .mbody h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0d121b;
}
section.s5 .fitrow article .media .mbody p {
  font-size: 14px;
}
section.s6 article {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  margin: 0 0 24px;
  min-height: 168px;
}
section.s6 article .material-symbols-outlined {
  font-size: 30px;
  color: var(--c3);
  margin: 0 0 16px;
}
section.s6 article h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--c2);
}
section.s6 article p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #9ca3af;
}
section.s7 {
  text-align: center;
}
section.s7 h3 {
  font-size: 48px;
  font-weight: 900;
  line-height: 60px;
  color: #0d121b;
  margin: 0 0 32px;
}
section.s7 p {
  font-style: italic;
  margin: 0;
}
section.s8 .phead {
  max-width: 850px;
  margin: 0 auto 40px;
}
section.s8 .phead h3 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}
section.s8 .phead p {
  max-width: 660px;
  margin: auto;
}
section.s8 .btn-sec {
  display: flex;
  justify-content: center;
  gap: 24px;
}
section.s8 .btn-sec .btn {
  min-width: 180px;
}
section.is1 {
  text-align: center;
}
section.is1 h3 {
  max-width: 800px;
  margin: auto;
  font-size: 48px;
  line-height: 55px;
}
section.s9 article {
  background-color: var(--c2);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--c2);
}
section.s9 article:hover {
  border-color: rgba(25, 92, 157, 0.3019607843);
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
section.s9 article:hover .icon {
  background-color: var(--c3);
  color: var(--c2);
}
section.s9 article .icon {
  width: 48px;
  height: 48px;
  background-color: rgba(25, 92, 157, 0.1019607843);
  border-radius: 48px;
  color: var(--c3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s linear;
}
section.s9 article h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--c1);
  margin: 15px 0;
}
section.s9 article p {
  font-size: 16px;
  line-height: 25px;
  margin: 0;
}
section.s10 article .img-sec {
  text-align: center;
  margin: 0 0 16px;
}
section.s10 article .img-sec img {
  width: 184px;
  height: 184px;
  border-radius: 184px;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--c2);
}
section.s10 article .csec {
  text-align: center;
}
section.s10 article .csec h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c1);
}
section.s10 article .csec span {
  display: block;
  font-size: 14px;
  line-height: 16px;
  color: var(--c3);
  margin: 0 0 8px;
}
section.s10 article .csec p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
section.s11 {
  text-align: center;
}
section.s11.sleft {
  text-align: left;
}
section.s11.sleft p {
  margin: 0;
}
section.s11 h3 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 25px;
}
section.s11 p {
  max-width: 600px;
  margin: 0 auto 25px;
}
section.s12 .plist {
  max-width: 1130px;
  margin: 30px auto 0;
}
section.s12 .plist article {
  background-color: var(--c2);
  border: 1px solid #e1dbe6;
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  transition: 0.3s linear;
}
section.s12 .plist article:hover {
  transform: translateY(-10px);
}
section.s12 .plist article .phead {
  margin: 0 0 24px;
}
section.s12 .plist article .phead h5 {
  font-size: 18px;
  line-height: 28px;
  color: var(--c1);
  font-weight: 700;
}
section.s12 .plist article .phead h3 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 800;
  color: var(--c1);
}
section.s12 .plist article .phead h3 span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  display: inline-block;
  margin: 0 0 0 6px;
  color: #616b89;
}
section.s12 .plist article .phead p {
  font-size: 14px;
  line-height: 20px;
  color: #616b89;
}
section.s12 .plist article .credits {
  margin: 0 0 24px;
  border-bottom: 1px solid #f3f0f4;
  padding: 0 0 24px;
}
section.s12 .plist article .credits .btn {
  width: 100%;
}
section.s12 .plist article .credits p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c3);
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 0 24px;
}
section.s12 .plist article .credits p em {
  background-color: #f3f4f6;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 16px;
  color: #616b89;
  font-weight: 400;
  font-style: normal;
}
section.s12 .plist article h5 {
  font-size: 14px;
  color: #0d121b;
  margin: 0 0 10px;
}
section.s12 .plist article .list-custom li {
  font-size: 14px;
}
section.s12 .plist article .list-custom li:before {
  top: 6px;
}
section.s12 .plist article .list-custom li.disabled {
  opacity: 0.5;
}
section.s12 .plist article .list-custom li.disabled::before {
  content: "\f623";
  color: #0d121b;
}
section.s12 .plist article.enterprise .credits p {
  color: var(--c1);
}
section.s12 .plist article.pro {
  border: 2px solid var(--c3);
  position: relative;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 25px 50px -12px rgba(25, 92, 157, 0.15);
}
section.s12 .plist article.pro::before {
  content: "Best Value";
  background-color: var(--c3);
  color: var(--c2);
  position: absolute;
  top: -14px;
  left: calc(50% - 55.845px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
section.s13 .runlow {
  max-width: 1000px;
  margin: auto;
}
section.s13 .runlow article {
  background-color: var(--c2);
  border: 1px solid #f3f0f4;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
section.s13 .runlow article .icon {
  width: 48px;
  height: 48px;
  margin: auto;
  background-color: rgba(25, 92, 157, 0.1019607843);
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c3);
}
section.s13 .runlow article p {
  margin: 12px 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: var(--c1);
}
section.s13 .runlow article h4 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 800;
  margin: 0 0 5px;
  color: var(--c3);
}
section.s13 .runlow article p.span {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #617189;
  margin: 0;
}
section.s14 .accordion {
  max-width: 720px;
  margin: auto;
}
section.s14 .accordion .accordion-item {
  background-color: var(--c2);
  border: 1px solid var(--c2);
  border-radius: 24px;
  overflow: hidden;
}
section.s14 .accordion .accordion-item .accordion-button {
  padding: 24px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--c1);
  background: none;
  box-shadow: none;
}
section.s14 .accordion .accordion-item .accordion-collapse .accordion-body {
  padding: 0 24px 24px;
  color: var(--c1);
  opacity: 0.5;
  font-size: 16px;
  line-height: 24px;
}
section.s14 .accordion .accordion-item + .accordion-item {
  margin: 16px 0 0;
}
section.s14 .accordion .accordion-item:has(.accordion-collapse.show) {
  border-color: var(--c3);
}
section.s15 article {
  background-color: var(--c2);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #e1dbe6;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
section.s15 article h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin: 0 0 24px;
}
section.s15 article .form-section .form-group {
  margin: 0 0 24px;
}
section.s15 article .form-section .form-group .form-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #8a8a8a;
}
section.s15 article .form-section .form-group .para-div {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--c1);
}
section.s15 article .form-section .form-group .form-control,
section.s15 article .form-section .form-group .form-select {
  height: 56px;
  background-color: #f7f6f8;
  border-radius: 24px;
  border-color: #e1dbe6;
  padding: 8px 16px;
}
section.s15 article .form-section .form-group textarea.form-control {
  height: 160px;
  resize: none;
}
section.s15 article .media + .media {
  margin: 35px 0 0;
}
section.s15 article .media .icon {
  width: 48px;
  height: 48px;
  background-color: rgba(25, 92, 157, 0.1019607843);
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c3);
}
section.s15 article .media h4 {
  margin: 12px 0 5px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: var(--c1);
}
section.s15 article .media p {
  font-size: 14px;
  line-height: 20px;
  color: #616b89;
  margin: 0 0 5px;
}
section.s15 article .media p a {
  font-size: 13px;
  font-weight: 600;
  color: var(--c3);
  text-decoration: none;
}
section.s16 aside {
  position: sticky;
  top: 120px;
}
section.s16 aside ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.s16 aside ul.dropdown-menu {
  display: none;
}
section.s16 aside ul.dropdown-menu li .dropdown-item {
  font-size: 15px;
}
section.s16 aside ul.dropdown-menu li .dropdown-item.active {
  background-color: #f0f0f0;
  color: var(--c1);
}
section.s16 aside ul.dropdown-menu.show {
  display: block;
}
section.s16 aside ul li a {
  font: 500 15px/24px var(--f1);
  color: #525c70;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  display: inline-block;
  position: relative;
  /*&::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background-color: var(--c3);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s ease;
  }
  &.active,
  &:hover {
      color: var(--c3);
      &::after {
          transform: scaleX(1);
      }
  }*/
}
section.s16 aside ul li a.active, section.s16 aside ul li a:hover {
  color: var(--c3);
}
section.s16 aside ul li a.active {
  font-weight: 700;
}
section.s16 .legal-content {
  background-color: #f7f6f8;
  padding: 30px;
  border-radius: 16px;
}
section.s16 .legal-content a {
  color: var(--c3);
}
section.s16 .legal-content strong {
  font-weight: 600;
}
section.s16 .legal-content #legalHead {
  display: none;
}
section.s16 .legal-content article h3 {
  font: 800 25px/35px var(--f1);
}
section.s16 .legal-content article p {
  font-size: 16px;
}
section.s16 .legal-content article ul {
  padding: 0 0 0 15px;
}
section.s16 .legal-content article ul li {
  font-size: 16px;
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  section.banner .banner-caption h1 {
    font-size: 55px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  section.banner {
    padding: 150px 0 60px;
    height: auto;
  }
  section.banner .banner-caption h1 {
    font-size: 46px;
    line-height: 60px;
  }
}
@media screen and (max-width: 992px) {
  header .navbar {
    padding: 10px 0;
  }
  header .navbar .navbar-toggler {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  header .navbar .navbar-collapse .navbar-flex {
    margin: 0;
  }
  header .navbar .navbar-collapse .navbar-flex .navbar-nav {
    padding: 20px 0 0;
    align-items: flex-start;
    gap: 25px;
  }
  header .navbar .navbar-collapse .navbar-flex .navbar-nav .nav-item {
    display: block !important;
  }
  header .navbar .navbar-collapse .header-right {
    padding: 25px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  section.banner {
    padding: 100px 0;
    height: auto;
  }
  section.banner .row > div:first-child {
    width: 66.66666667%;
  }
  section.banner .row > div:last-child {
    width: 33.33333333%;
  }
  section.banner .banner-caption h1 {
    font-size: 32px;
    line-height: 45px;
  }
  section.banner.confirmpage .row > div {
    width: 100%;
  }
  section.s2 .chatimg {
    margin: 0;
  }
  section.s10 article .img-sec img {
    width: 150px;
    height: 150px;
    border-radius: 150px;
  }
  section.s12 .plist article {
    padding: 20px;
  }
  section.s12 .plist article .phead h3 {
    font-size: 25px;
  }
  section.s15 article {
    padding: 20px;
  }
  section.s15 article .form-section .form-group .form-control,
  section.s15 article .form-section .form-group .form-select {
    height: 45px;
  }
  section.s15 article .form-section .form-btn .btn {
    min-width: 180px;
  }
  section.s15 .plist > .row > div:first-child {
    width: 60%;
  }
  section.s15 .plist > .row > div:last-child {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  section.banner {
    height: auto;
    padding-top: 140px;
  }
  section.banner .banner-caption h1 {
    font-size: 40px;
    line-height: 55px;
  }
  section.banner article {
    height: 300px;
    margin: 24px 0 0;
  }
  section.banner .img-sec {
    margin: 24px 0 0;
  }
  section.trust ul {
    gap: 30px;
  }
  section.trust ul li {
    text-align: center;
  }
  section.trust ul li span {
    display: block;
    line-height: 20px;
    margin: 8px 0 0;
  }
  section.s1.chaos article {
    margin-top: 60px;
  }
  section.s2 .chatimg {
    margin: 0 0 24px;
    height: auto;
  }
  section.s3 article {
    margin: 0 0 24px !important;
  }
  section.s4 .row::before {
    display: none;
  }
  section.s4 article {
    margin: 20px 0 0;
  }
  section.s4 article p {
    margin-bottom: 25px;
  }
  section.s5 .headart {
    margin: 0 0 24px;
  }
  section.s5 .fitrow article {
    margin: 0 0 24px !important;
  }
  section.s6 article {
    margin: 0 0 24px !important;
  }
  section.statistics article {
    margin: 20px auto;
    max-width: 230px;
    justify-content: flex-start;
  }
  section.s9 article {
    margin: 0 0 24px;
  }
  section.s10 article {
    margin: 0 0 24px;
  }
  section.s11.sleft p {
    margin: 0 0 24px;
  }
  section.s12 .plist article {
    margin: 0 0 30px;
    height: auto;
  }
  section.s13 .runlow article {
    margin: 0 0 24px;
  }
  section.s15 article {
    margin: 0 0 24px;
  }
  header .header-top ul li a {
    font-size: 13px;
  }
  footer .logo {
    margin: 0 0 24px;
  }
  footer .row .row > div {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  footer .footer-bottom {
    padding: 25px 0 0;
    margin: 25px 0 0;
    flex-direction: column;
  }
  footer .footer-bottom p {
    margin: 0 0 24px;
  }
}

/*# sourceMappingURL=landing.css.map */
