@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 36px;
  gap: 12px;
  border-radius: 45px;
  background: var(--Blue);
  box-shadow: 0px 7px 17.7px 0px rgba(0, 0, 0, 0.08);
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  cursor: pointer;
}
.btn.btn-outline {
  background: transparent;
  color: var(--Dark);
  box-shadow: 0px 7px 17.7px 0px rgba(0, 0, 0, 0.08), inset 0px 0px 0px 2px var(--Dark);
}
.btn.btn-block {
  display: flex;
  width: 100%;
}
.btn.btn-sm {
  padding: 8px 18px;
  gap: 6px;
  font-size: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.logo .logo-text {
  color: var(--Dark);
  font-size: 24px;
  font-weight: 600;
}

.navbar {
  padding: 0px var(--container-px);
  background: #FFF;
  box-shadow: 0px 4px 23.5px 0px rgba(0, 0, 0, 0.06);
  z-index: 9;
}
.navbar .menu-toggle {
  display: none;
  cursor: pointer;
}
.navbar .menu-toggle svg path {
  fill: var(--Dark);
}
.navbar .container {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.nav-links .link-item {
  color: #575353;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
}
.nav-links .link-item.active {
  color: var(---Dark-Blue);
  font-weight: 600;
}
.nav-links .link-item:hover {
  color: var(--Dark-Blue);
}
.nav-links.vertical-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px !important;
}

.dashboard-nav-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.dashboard-nav-item .icon {
  position: relative;
}
.dashboard-nav-item .icon .badge {
  display: block;
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--bg-color);
  color: #FFF;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.075);
}

.sidebar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  backdrop-filter: blur(5px);
  display: none;
}
.sidebar-wrapper .sidebar {
  background-color: #fff;
  width: 280px;
  height: 100%;
  overflow-y: auto;
  padding: 24px;
  animation: slideInLeft 0.35s ease-out;
}
.sidebar-wrapper .sidebar .btn {
  width: 100%;
}
.sidebar-wrapper.active {
  display: block;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.section {
  padding: 128px var(--container-px);
  background: #F3F9FF;
  --mouse-x: 0;
  --mouse-y: 0;
}
.section .section-title {
  color: var(--Dark, );
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin: auto;
  max-width: 970px;
}
.section.gredient-bg {
  background-color: var(--Light-Blue);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.section.gredient-bg .bg-shapes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  z-index: -1;
}

.footer {
  padding: 32px var(--container-px);
  text-align: center;
  background-color: var(--Transparent-White);
}
.footer .nav-links {
  justify-content: center;
  margin-top: 16px;
}
.footer .copy-text {
  font-size: 24px;
  font-weight: 600;
}

.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 28px;
}

.feature-card {
  display: flex;
  padding: 28px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
  background-color: #003366;
  color: #fff;
}
.feature-card .icon-tite {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  opacity: 0.85;
}
.feature-card .icon-tite .icon svg {
  width: 72px;
  height: 72px;
}
.feature-card .icon-tite .title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
.feature-card .text {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  line-height: 140%;
  opacity: 0.75;
}
p .feature-card .text:last-child {
  margin-bottom: 0px;
}

.character-popin {
  display: inline-block;
}
.character-popin .character {
  display: inline-block;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: var(--anim-delay);
}
.character-popin.visible-in-view .character {
  transform: translateY(0px);
  opacity: 1;
}

.testimonial-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 2em;
}
.testimonial-item .dp {
  width: 180px;
  height: 180px;
  border-radius: 15px;
}
.testimonial-item .quote {
  color: var(--Dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
  margin-top: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.faq-contrainer {
  display: flex;
  padding: 32px;
  flex-direction: column;
  gap: 32px;
  border-radius: 13px;
  background: var(--Transparent-White);
  box-shadow: 0px 27px 32.7px 0px rgba(0, 0, 0, 0.07);
  margin-top: 84px;
}
.faq-contrainer .faq-item {
  border-bottom: 1px solid #EAECF0;
  padding-bottom: 24px;
}
.faq-contrainer .faq-item .nav {
  display: flex;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
}
.faq-contrainer .faq-item .icon {
  transition: transform 0.35s ease-in-out;
}
.faq-contrainer .faq-item .question {
  color: var(--Dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}
.faq-contrainer .faq-item .answer {
  color: var(--Gray-500, #667085);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-top: 8px;
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
}
.faq-contrainer .faq-item .answer a {
  color: var(--Blue);
  text-decoration: none;
  font-weight: 500;
}
.faq-contrainer .faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}
.faq-contrainer .faq-item.active .answer {
  max-height: 1000px;
}
.faq-contrainer .faq-item.active .icon {
  transform: rotate(180deg);
}

.toggle {
  cursor: pointer;
  display: inline-block;
}

.toggle-switch {
  display: inline-block;
  background: #e1e0e0;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  user-select: none;
}
.toggle-switch:before, .toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle-checkbox:checked + .toggle-switch {
  background: var(--Blue);
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}

.toggle-checkbox {
  position: absolute;
  visibility: hidden;
}

.toggle-label {
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.input-group {
  --color-light-grey: #DFE4EA;
  --color-slate-grey: #425466;
}
.input-group .input {
  padding: 11px 16px;
  outline: none;
  border-radius: 8px;
  border: 1px solid var(--color-light-grey);
  background: #FFF;
  box-shadow: 0px 10px 24px 0px rgba(0, 0, 0, 0.03);
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.16px;
  min-height: 44px;
}
.input-group .input::placeholder {
  color: var(--color-slate-grey);
}
.input-group textarea.input {
  min-height: 100px;
  max-height: 500px;
  resize: vertical;
}
.input-group.with-icon {
  position: relative;
}
.input-group.with-icon .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1em;
}
.input-group.with-icon .input {
  padding-left: 3em;
}
.input-group .label {
  color: #425466;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%; /* 18px */
  letter-spacing: 0.24px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.input-group .sublabel {
  color: #425466;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  letter-spacing: -0.14px;
  margin-top: -12px;
  margin-bottom: 16px;
}

.data-table-wrapper {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 11px 17.7px 0px rgba(0, 0, 0, 0.08);
  padding: 32px;
  overflow-x: auto;
}
.data-table-wrapper::-webkit-scrollbar {
  width: 3px;
  height: 6px;
  border-radius: 3px;
}
.data-table-wrapper::-webkit-scrollbar-thumb {
  background-color: var(--Blue);
  border-radius: 3px;
}
.data-table-wrapper::-webkit-scrollbar-track {
  background: #eae9e9;
}

.data-table {
  min-width: var(--table-min-width, 800px);
}
.data-table .tr {
  display: grid;
  grid-template-columns: var(--table-columns);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f1f1f1;
}
.data-table .tr:last-child {
  border-bottom: none;
}
.data-table .td {
  font-size: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.data-table .th .td {
  font-weight: 600;
}
.data-table .th .td .text {
  opacity: 1;
}
.data-table .actions {
  gap: 12px;
}
.data-table .actions .action {
  cursor: pointer;
}
.data-table .text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  opacity: 0.9;
  text-decoration: none;
  color: var(---Dark);
}
.data-table .title, .data-table .signee-count {
  cursor: pointer;
  font-weight: 500;
  opacity: 1;
}

.review-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  background-color: rgb(228, 251, 228);
  color: rgb(0, 128, 0);
  text-decoration: none;
}
.review-status-badge.pending {
  background-color: rgb(255, 243, 220);
  color: rgb(255, 165, 0);
  cursor: pointer;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--Dark);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.multi-setp-form-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.multi-setp-form-nav .step-item {
  --size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #e6e6e6;
  color: #FFF;
  font-size: 18px;
}
.multi-setp-form-nav .step-item.active {
  background: var(--Blue);
}
.multi-setp-form-nav .step-bar {
  flex-grow: 1;
  height: 5px;
  background: #e6e6e6;
  border-radius: 5px;
}
.multi-setp-form-nav .step-bar.active {
  background: var(--Blue);
}

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

.multi-setp-form-content {
  margin: 24px 0;
}

.file-drop-zone {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  border: 2px dashed #e6e6e6;
  background-color: rgba(244, 244, 244, 0.2862745098);
  padding: 0.5em;
  color: var(--color-slate-grey);
  font-weight: 700;
  line-height: 120%;
  transition: all 0.3s;
}
.file-drop-zone:hover {
  border: 2px dashed var(--Blue);
  background-color: #ebf4fe;
}

.or-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}
.or-indicator .hr {
  flex-grow: 1;
  height: 1px;
  background: #e6e6e6;
}
.or-indicator .text {
  opacity: 0.75;
  font-size: 14px;
  font-weight: 500;
}

.article-content h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
}
.article-content h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 16px;
}
.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 12px;
  margin-top: 24px;
}
.article-content hr {
  border: none;
  border-top: 1px solid #a2a2a2;
  margin: 24px 0;
}
.article-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 10px;
  color: var(---Dark);
  opacity: 0.8;
}
.article-content a {
  color: var(--Blue);
  text-decoration: none;
  font-weight: 600;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.article-content table th, .article-content table td {
  border: 1px solid #c5c5c5;
  padding: 12px;
  text-align: left;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 64px;
}
.articles-grid .article-card {
  text-decoration: none;
  color: var(---Dark);
}
.articles-grid .article-card .article-img {
  display: block;
  aspect-ratio: 16/9;
  margin-bottom: 12px;
  border-radius: 2px;
  filter: grayscale(0.8);
}
.articles-grid .article-card:hover .article-img {
  filter: grayscale(0);
}
.articles-grid .article-card .article-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

:root {
  --Dark: #2d2b2b;
  --Blue: #3597FF;
  --Teal: #00C79F;
  --Dark-Blue: #003366;
  --Light-Blue: #DDF1FF;
  --Transparent-White: rgba(255, 255, 255, 0.75);
  --container-px: 120px;
}

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--Light-Blue);
  color: var(--Dark);
  font-size: 16px;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  object-fit: cover;
}

input, button {
  outline: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.highlight {
  color: var(--Teal);
  font-weight: 600;
}

.highlight-blue {
  color: var(--Blue);
  font-weight: 600;
}

.mt-4 {
  margin-top: 64px;
}

.mt-3 {
  margin-top: 48px;
}

.mt-2 {
  margin-top: 32px;
}

.mt-1-5 {
  margin-top: 24px;
}

.mt-1 {
  margin-top: 16px;
}

.mt-0-5 {
  margin-top: 8px;
}

.mb-0-5 {
  margin-bottom: 8px;
}

.mb-1 {
  margin-bottom: 16px;
}

.mb-1-5 {
  margin-bottom: 24px;
}

.my-1-5 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.d-none {
  display: none !important;
}

.radia-bg {
  background: radial-gradient(72.16% 72.16% at 30% 30.67%, #78E7EB 0%, #A0CEFF 100%);
}

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

[class*=hint--]::before {
  border-top-color: var(--Dark-Blue) !important;
}

[class*=hint--]:after {
  background-color: var(--Dark-Blue) !important;
  border-radius: 6px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
}

.unordered-list {
  padding-left: 24px;
}
.unordered-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.unordered-list li:last-child {
  margin-bottom: 0;
}

.swiper {
  height: 420px;
}

.swiper-pagination-bullet {
  background: var(--Teal);
}

.hero-section .welcome-text {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%; /* 41.6px */
}
.hero-section .info {
  font-size: 18px;
  font-weight: 500;
  line-height: 160%; /* 27px */
  opacity: 0.8;
  margin-top: 18px;
}
.hero-section .signed-count {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%; /* 27px */
  color: #5d5d5e;
}
.hero-section .signed-count .count {
  font-weight: 700;
  color: var(--Blue);
}
.hero-section ul.info {
  padding-left: 24px;
  opacity: 0.85;
}
.hero-section ul.info li {
  font-size: 17px;
  margin-bottom: 12px;
  line-height: 1.35;
}
.hero-section ul.info li:last-child {
  margin-bottom: 0;
}
.hero-section .cta-nav {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  align-items: center;
  gap: 18px;
}
.hero-section .cta-nav .primary-cta {
  min-width: 216px;
}
.hero-section .two-col-content {
  margin-top: 84px;
}

.hero-testimonial {
  background-color: #003366;
  padding: 38px;
  border-radius: 14px;
  color: #fff;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 32px;
  box-shadow: 0px 8px 38px 0px rgba(0, 0, 50, 0.2);
}
.hero-testimonial .img-current {
  aspect-ratio: 1/1;
  border-radius: 10px;
  max-width: 200px;
  width: 100%;
}
.hero-testimonial .testimonial-texts {
  padding-left: 32px;
  border-left: 1px solid rgba(221, 241, 255, 0.3176470588);
}
.hero-testimonial .sub-title {
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-testimonial .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hero-testimonial .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%; /* 28.8px */
  opacity: 0.75;
  margin-bottom: 16px;
}
.hero-testimonial .name {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 18px;
  margin-bottom: 6px;
}
.hero-testimonial .designation {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.3;
}

.pricing-section .price.yearly-price {
  display: none;
}
.pricing-section:has(#yearly-billing-toggle:checked) .price.yearly-price {
  display: flex;
}
.pricing-section:has(#yearly-billing-toggle:checked) .price.monthly-price {
  display: none;
}

.billing-frequency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.billing-frequency .text {
  font-size: 18px;
  font-weight: 700;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: auto;
  max-width: 1200px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
}

.pricing-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.81);
  padding: 40px 24px;
  height: fit-content;
  max-width: 360px;
  min-width: 320px;
  width: 100%;
}
.pricing-card .title {
  font-size: 22px;
  font-weight: 700;
}
.pricing-card .info {
  margin-top: 11px;
  margin-bottom: 20px;
}
.pricing-card .price {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.pricing-card .price .text {
  font-size: 48px;
  font-weight: 600;
}
.pricing-card .price .text span.sub {
  display: inline-block;
  font-size: 24px;
  padding-left: 4px;
}
.pricing-card .price .period {
  color: var(--Neutral-600, #4B5768);
  font-size: 16px;
  font-weight: 300;
  margin-left: 4px;
}
.pricing-card .features {
  margin-top: 40px;
}
.pricing-card .feature-item {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 12px;
}
.pricing-card .feature-item:last-child {
  margin-bottom: 0;
}
.pricing-card .feature-item .text {
  font-size: 16px;
  font-weight: 500;
}
.pricing-card .feature-item svg {
  flex-shrink: 0;
}
.pricing-card .feature-item.not-included .text {
  opacity: 0.5;
}
.pricing-card.basic {
  background-color: var(--Transparent-White);
}
.pricing-card.standard {
  background-color: var(--Dark-Blue);
  color: white;
  padding: 50px 24px;
  box-shadow: 0px 15px 28.1px 0px rgba(0, 0, 0, 0.15);
  position: relative;
}
.pricing-card.standard .price .period {
  color: rgba(255, 255, 255, 0.7);
}
.pricing-card.standard .info-graphic {
  position: absolute;
  top: 29px;
  left: 135px;
  width: 170px;
  height: auto;
}
.pricing-card.standard .info-graphic .arrow-line {
  stroke-dasharray: 300; /* Adjust this value based on the path length */
  stroke-dashoffset: 300;
}
.pricing-card.standard .info-graphic.visible-in-view .arrow-line {
  animation: draw-line 2s ease-in-out forwards;
  animation-delay: 1s;
}
.pricing-card.standard .info-graphic.visible-in-view .arrow-line.alt {
  animation-delay: 2.2s;
}
.pricing-card.enterprise {
  padding: 60px 24px;
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}
.section.dashboard-section {
  padding-top: 64px;
}

.dashboard-stats {
  display: flex;
  padding: 16px 24px;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  border-radius: 12px;
  background: var(--Transparent-White);
  box-shadow: 0px 8px 21.5px 0px rgba(0, 0, 0, 0.03);
}
.dashboard-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 300px;
}
.dashboard-stats .stat-item .title {
  color: var(--Dark-Blue);
  font-size: 16px;
  font-weight: 700;
  opacity: 0.8;
}
.dashboard-stats .stat-item .info {
  margin-top: 6px;
}
.dashboard-stats .stat-item .info .text {
  font-size: 28px;
  font-weight: 700;
}
.dashboard-stats .v-divider {
  border-radius: 13px;
  background: #d6d6d6;
  width: 2px;
  height: 56px;
}

.dashboard-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 64px;
}
.dashboard-nav .title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.dashboard-nav .title .badge {
  display: inline-block;
  background: var(--Dark-Blue);
  color: var(--Light-Blue);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.dashboard-nav .info {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%; /* 22.4px */
  opacity: 0.8;
}
.dashboard-nav .search-inputs {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.dashboard-nav .search-inputs .input-group {
  width: 100%;
  max-width: 334px;
}

.filters-icon {
  height: 44px;
  width: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid var(--color-light-grey, #DFE4EA);
  background: #FFF;
  position: relative;
  cursor: pointer;
}
.filters-icon .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--Dark-Blue);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.075);
}

.actions-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.actions-nav .action-preview {
  background-color: rgba(11, 184, 149, 0.5);
}
.actions-nav .action-edit {
  background-color: rgba(0, 51, 102, 0.5);
}
.actions-nav .action-delete {
  background-color: rgba(238, 46, 46, 0.5);
}
.actions-nav .btn:hover {
  filter: brightness(1.1);
}

.status-badge.status-complete {
  background-color: var(--Blue);
  color: #fff;
}

.create-agreement-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.create-agreement-form {
  padding: 24px;
  border-radius: 12px;
  background-color: #fff;
}
.create-agreement-form .title {
  font-size: 24px;
  font-weight: 700;
}

.agreement-type-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.agreement-type-select .select-item {
  padding: 10px 16px;
  border-radius: 40px;
  background: #e5eaed;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0px 8px 21.5px 0px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.agreement-type-select .select-item input {
  display: none;
}
.agreement-type-select .select-item:has(input:checked) {
  background: var(--Blue);
  color: white;
}

.selected-agreement-type-info {
  border: 1px solid var(--Blue);
  background-color: #f7fafd;
  border-radius: 12px;
  padding: 12px;
}
.selected-agreement-type-info .title {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}
.selected-agreement-type-info .info {
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.3;
  opacity: 0.8;
}

.required-documents-select {
  display: flex;
  gap: 12PX;
  flex-wrap: wrap;
}
.required-documents-select:has(#RD-custom:checked) + .custom-doc-name-input {
  display: block;
}

.custom-doc-name-input {
  display: none;
}

.required-document-item {
  height: 100px;
  width: 110px;
  border-radius: 12px;
  background: rgba(248, 248, 248, 0.3411764706);
  box-shadow: inset 0 0 0 1px #E6E6E6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  position: relative;
  cursor: pointer;
}
.required-document-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.required-document-item .icon {
  width: auto;
  height: 30px;
}
.required-document-item .text {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
}
.required-document-item:has(input:checked) {
  background: rgb(246, 250, 253);
  box-shadow: 0 0 0 2px var(--Blue);
}

.create-agreement-page .preview-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.create-agreement-page .preview-col .title {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 1400px) {
  :root {
    --container-px: 80px;
  }
  .hero-testimonial {
    grid-template-columns: 1fr;
  }
  .hero-testimonial .testimonial-img {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .hero-testimonial .img-current {
    width: 100px;
  }
  .hero-testimonial .testimonial-texts {
    padding-left: 24px;
  }
}
@media (max-width: 1150px) {
  .section {
    padding: 96px var(--container-px);
  }
  .section .section-title {
    font-size: 48px;
  }
  .data-table-wrapper {
    padding: 24px;
  }
  .data-table .tr {
    grid-template-columns: var(--table-columns-sm);
  }
  .hero-testimonial {
    padding: 28px;
  }
  .hero-testimonial .testimonial-texts {
    padding-left: 0;
    border-left: none;
  }
  .hero-testimonial .testimonial-img {
    gap: 18px;
  }
}
@media (max-width: 1000px) {
  :root {
    --container-px: 60px;
  }
  .section {
    padding: 84px var(--container-px);
  }
  .two-col-content {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .showcase-grid {
    max-width: 700px;
    margin: auto;
  }
  .pricing-grid {
    gap: 32px;
  }
  .dashboard-stats {
    display: none;
  }
  .section.dashboard-section {
    padding-top: 0;
  }
  .navbar .nav-links {
    display: none;
  }
  .navbar.app-navbar .nav-links {
    display: flex;
  }
  .navbar .menu-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .create-agreement-page {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 850px) {
  .logo .logo-text {
    display: none;
  }
  .section .section-title {
    font-size: 32px;
  }
  .logo .logo-text {
    display: block;
  }
}
@media (max-width: 768px) {
  :root {
    --container-px: 36px;
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links .link-item {
    font-size: 18px;
  }
  .navbar.app-navbar .logo-text {
    display: none;
  }
  .hero-section .welcome-text {
    font-size: 24px;
  }
  .hero-section .info {
    font-size: 16px;
  }
  .hero-section .cta-nav .primary-cta {
    min-width: auto;
  }
  .hero-section .two-col-content {
    margin-top: 48px;
  }
  .hero-testimonial .testimonial-img {
    gap: 16px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card .icon-tite .title {
    font-size: 18px;
  }
  .dashboard-nav {
    margin-top: 48px;
  }
}
@media (max-width: 576px) {
  :root {
    --container-px: 24px;
  }
  .logo .logo-text {
    font-size: 20px;
  }
  .nav-links {
    gap: 14px;
  }
  .section .section-title {
    font-size: 24px;
  }
  .hero-section .welcome-text {
    font-size: 18px;
  }
  .hero-section .info {
    font-size: 14px;
  }
  .hero-section .cta-nav {
    flex-direction: column;
    gap: 18px;
  }
  .hero-section .cta-nav .btn {
    min-width: 100%;
  }
  .hero-section .two-col-content {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-testimonial .testimonial-img {
    gap: 14px;
  }
  .showcase-grid {
    display: none;
  }
  .features-grid {
    gap: 24px;
  }
  .showcase-grid {
    gap: 12px;
  }
  .billing-frequency {
    gap: 18px;
  }
  .dashboard-nav {
    margin-top: 36px;
  }
}

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