@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap");
.mb-01 {
  margin-bottom: 0.25rem;
}
.mb-02 {
  margin-bottom: 0.5rem;
}
.mb-03 {
  margin-bottom: 0.75rem;
}
.mb-04 {
  margin-bottom: 1rem;
}
.mb-05 {
  margin-bottom: 1.25rem;
}
.mb-06 {
  margin-bottom: 1.5rem;
}
.mb-07 {
  margin-bottom: 2rem;
}
.mb-08 {
  margin-bottom: 2.5rem;
}
.mb-09 {
  margin-bottom: 3rem;
}
.mb-10 {
  margin-bottom: 3.375rem;
}
.mb-11 {
  margin-bottom: 4rem;
}
.mb-12 {
  margin-bottom: 4.5rem;
}
.mb-13 {
  margin-bottom: 5rem;
}
.mb-14 {
  margin-bottom: 6rem;
}
@media (min-width: 992px) {
  .mb-lg-01 {
    margin-bottom: 0.25rem;
  }
  .mb-lg-02 {
    margin-bottom: 0.5rem;
  }
  .mb-lg-03 {
    margin-bottom: 0.75rem;
  }
  .mb-lg-04 {
    margin-bottom: 1rem;
  }
  .mb-lg-05 {
    margin-bottom: 1.25rem;
  }
  .mb-lg-06 {
    margin-bottom: 1.5rem;
  }
  .mb-lg-07 {
    margin-bottom: 2rem;
  }
  .mb-lg-08 {
    margin-bottom: 2.5rem;
  }
  .mb-lg-09 {
    margin-bottom: 3rem;
  }
  .mb-lg-10 {
    margin-bottom: 3.375rem;
  }
  .mb-lg-11 {
    margin-bottom: 4rem;
  }
  .mb-lg-12 {
    margin-bottom: 4.5rem;
  }
  .mb-lg-13 {
    margin-bottom: 5rem;
  }
  .mb-lg-14 {
    margin-bottom: 6rem;
  }
}

.mw-460 {
  max-width: 460px;
}
.mw-518 {
  max-width: 518px;
}
.mw-550 {
  max-width: 550px;
}
.mw-620 {
  max-width: 620px;
}
.mw-630 {
  max-width: 630px;
}
.mw-670 {
  max-width: 670px;
}
.mw-690 {
  max-width: 690px;
}
.mw-710 {
  max-width: 710px;
}
.mw-770 {
  max-width: 770px;
}
.mw-800 {
  max-width: 800px;
}
.mw-900 {
  max-width: 900px;
}
@media (min-width: 992px) {
  .mw-lg-410 {
    max-width: 430px;
  }
}

.ts-fs-1 {
  font-size: clamp(2.5rem, 3vw, 3.75rem);
}
.ts-fs-2 {
  font-size: 2.25rem;
}
.ts-fs-3 {
  font-size: 2rem;
}
.ts-fs-4 {
  font-size: 1.75rem;
}
.ts-fs-5 {
  font-size: 1.5rem;
}
.ts-fs-6 {
  font-size: 1.375rem;
}
.ts-fs-7 {
  font-size: 1.25rem;
}
.ts-fs-8 {
  font-size: 1.125rem;
}
.ts-fs-9 {
  font-size: 1rem;
}
.ts-fs-10 {
  font-size: 0.875rem;
}
.ts-fs-11 {
  font-size: 0.75rem;
}
.ts-fs-12 {
  font-size: 0.625rem;
}

.ts-btn {
  padding: 0.75rem 2rem;
}
.ts-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #4DE6FF 0%, #306DFF 100%);
  transition: all 300ms ease-in-out;
}
.ts-btn-primary:hover {
  box-shadow: 0 0px 20px 0 rgba(65, 132, 234, 0.3);
}
.ts-btn-light {
  border-radius: 50px;
  background-color: gray;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", sans-serif;
  background-color: #06074d;
  color: #ffffff;
}

.ts-wrapper {
  width: 100%;
  overflow: hidden;
}

.ts-container-fluid {
  max-width: 1302px;
  padding-inline: 1.5rem;
}

@media (max-width: 991px) {
  .ts-container-lg-down-fluid {
    max-width: 1302px;
    padding-inline: 1.5rem;
    margin-inline: auto;
  }
}
@media (min-width: 992px) {
  .ts-container-lg-fluid {
    max-width: 1302px;
    padding-inline: 1.5rem;
    margin-inline: auto;
  }
}
.ts-subtitle {
  color: #4a90e2;
}

.ts-link-info {
  color: #4a90e2 !important;
}
.ts-link-info i {
  transition: all 300ms ease-in-out;
  font-size: 85%;
}
.ts-link-info:hover {
  color: #3172ff !important;
}
.ts-link-info:hover i {
  margin-left: 0.4rem;
}

.ts-text-opacity-30 {
  opacity: 30%;
}
.ts-text-opacity-60 {
  opacity: 60%;
}
.ts-text-opacity-80 {
  opacity: 80%;
}

.ts-tabs__links {
  position: relative;
  z-index: 100;
}
.ts-tabs .nav-pills .nav-link {
  text-align: start;
  color: rgba(255, 255, 255, 0.3);
  border-radius: 0;
  transition: all 300ms ease-in-out;
}
@media (max-width: 991px) {
  .ts-tabs .nav-pills .nav-link:hover {
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #4a90e2;
  }
}
@media (min-width: 992px) {
  .ts-tabs .nav-pills .nav-link:hover {
    padding-left: 1rem;
    border-left: 3px solid #4a90e2;
  }
}
.ts-tabs .nav-pills .active {
  color: white;
  background-color: transparent;
}
@media (max-width: 991px) {
  .ts-tabs .nav-pills .active {
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #4a90e2;
  }
}
@media (min-width: 992px) {
  .ts-tabs .nav-pills .active {
    padding-left: 1rem;
    border-left: 3px solid #4a90e2;
  }
}

.ts-capabilities__content {
  padding-block: 5rem;
}
.ts-capabilities__content .nav-link {
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .ts-capabilities__content .swiper {
    overflow: visible;
  }
}
@media (max-width: 767px) {
  .ts-capabilities__content {
    padding-block: 2.5rem;
  }
}

.ts-success-card {
  background-color: rgba(216, 233, 255, 0.03);
  padding: 2.75rem 2rem;
  border-radius: 0.625rem;
}
.ts-success-card__profile-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
}

.ts-sales-card {
  background: linear-gradient(135deg, #d0daf3 0%, #fff 100%);
  padding: 1.625rem;
  border-radius: 0.625rem;
  color: #0d0853 !important;
}
.ts-sales-card .accordion-button {
  box-shadow: none !important;
}
.ts-sales-card .accordion-button::after {
  width: 12px;
  height: 12px;
  background-size: 12px;
  display: none;
}
.ts-sales-card .accordion-button:not(.collapsed) {
  color: #0d0853;
  background-color: white !important;
}
.ts-sales-card .accordion-button:focus {
  z-index: 3;
  border-color: none !important;
}
.ts-sales-card .ts-tag {
  color: #9013fe;
  background-color: rgba(144, 19, 254, 0.3);
}

.ts-custom-review-button {
  position: relative;
}
.ts-custom-review-button::after {
  display: none;
}

.ts-side-border {
  border-left: 2px solid #006cff;
}
.ts-side-border__skyblue {
  border-color: #4a90e2;
}
.ts-side-border__green {
  border-color: #50e3c2;
}
.ts-side-border__purple-megenta {
  border-color: #bd10e0;
}
.ts-side-border__purple-vibrant {
  border-color: #9013fe;
}
.ts-side-border__radish-megenta {
  border-color: #9013fe;
}

.mw-100 {
  max-width: 100%;
}

.ts-tab-image-container {
  width: 350px;
  height: 230px;
  margin: auto;
}
.ts-tab-image-container img {
  max-height: 100%;
  max-width: 100%;
}

.section-join-us {
  background-color: #131556;
  padding-block: 8.125rem;
}
.section-join-us .ts-content {
  margin: auto;
  max-width: 500px;
}
.section-join-us .ts-logo-img-1 {
  filter: drop-shadow(5px 5px 20px rgb(223, 192, 57));
}
.section-join-us .ts-logo-img-2 {
  filter: drop-shadow(10px 5px 25px rgb(248, 23, 23));
}

.ts-tools-section {
  padding-bottom: 9.375rem;
}

.ts-list-status {
  align-items: flex-end;
}

.ts-capabilities .ts-tabs {
  /* SECTION VERTICAL TABS */
  /* STUB  LINKS */
}
.ts-capabilities .ts-tabs #experienceTab.nav-pills .nav-link.active {
  color: #4a90e2;
  background-color: transparent;
  border-left: 3px solid #4a90e2;
}
.ts-capabilities .ts-tabs #experienceTab.nav-pills .nav-link {
  border-radius: 0px;
}
.ts-capabilities .ts-tabs .date-range {
  letter-spacing: 0.01em;
  color: #d8d8d8;
}
.ts-capabilities .ts-tabs a {
  color: #d8d8d8;
}
.ts-capabilities .ts-tabs a:hover {
  color: #4a90e2;
}
@media (max-width: 575px) {
  .ts-capabilities .ts-tabs .ts-col {
    margin: 20px auto;
  }
}

.ts-tab-padding {
  padding-left: 0px !important;
  padding-right: 40px;
}

.accordion-container .accordion .accordion-item {
  padding: 16px 0;
  border-bottom: 1px solid #d8d8d8 !important;
}
.accordion-container .accordion h2 {
  position: relative;
  display: block;
  width: 100%;
  background: none;
  line-height: 20px;
  margin: 0px;
  padding: 16px 0;
}
.accordion-container .accordion h2:hover,
.accordion-container .accordion h2:focus {
  cursor: pointer;
}
.accordion-container .accordion h2:hover::after,
.accordion-container .accordion h2:focus::after {
  cursor: pointer;
}
.accordion-container .accordion h2 .icon {
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion-container .accordion h2 .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion-container .accordion h2 .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion-container .accordion h2[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion-container .accordion h2[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 5000px;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  margin-top: 10px;
}
.accordion-container .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion-container .accordion .accordion-content p {
  font-size: 12px;
  margin: 0px;
}

.ts-document-automation {
  background-color: #131556;
  padding-block: 9.25rem 8.75rem;
}

.ts-why-pixai {
  padding-block: 8.75rem;
  position: relative;
  isolation: isolate;
}
.ts-why-pixai__bg-gradient {
  position: absolute;
  top: 0;
  right: -10%;
  transform: rotate(-10deg);
  transform-origin: 100% 50%;
  width: 80%;
  height: 200px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(133, 81, 181, 0.2549019608) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
.ts-why-pixai__img {
  position: absolute;
  right: -2%;
  top: 15%;
  width: 50%;
  z-index: -2;
}
@media (max-width: 575px) {
  .ts-why-pixai .ts-fs-10 {
    font-size: 0.75rem;
  }
}

.ts-how-it-works {
  padding-top: 9rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.ts-how-it-works-timeline .ts-effor-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ts-how-it-works-timeline .ts-effor-card__header {
  min-height: 140px;
  display: flex;
  align-items: center;
}
.ts-how-it-works-timeline .ts-effor-card .ts-step {
  margin-top: 3.75rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 0.5rem;
  padding-left: 10px;
}
.ts-how-it-works-timeline .ts-effor-card .ts-step::before {
  content: "";
  width: 10px !important;
  height: 10px !important;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 50%;
}
.ts-how-it-works-timeline .ts-effor-card .ts-step__line {
  flex-grow: 1;
  border-top: 1px dashed #707070;
}
.ts-how-it-works-timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 11px;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  z-index: -1;
  background: rgb(45, 87, 164);
  background: linear-gradient(0deg, rgba(45, 87, 164, 0.4850315126) 0%, rgba(6, 7, 77, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2d57a4", endColorstr="#06074d", GradientType=1);
}
@media (max-width: 991px) {
  .ts-how-it-works-timeline {
    grid-template-columns: repeat(1, 1fr);
  }
  .ts-how-it-works-timeline::after {
    bottom: 0px;
  }
  .ts-how-it-works-timeline .ts-effor-card {
    position: relative;
  }
  .ts-how-it-works-timeline .ts-effor-card .ts-step {
    display: none;
  }
}
.ts-how-it-works-timeline .howItWorks-swiper-pagination {
  isolation: isolate;
}
.ts-how-it-works-timeline .howItWorks-swiper-pagination .swiper-pagination-bullet {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background-color: #182d76;
  position: relative;
  z-index: 10;
  margin: 0;
  opacity: 1;
}
.ts-how-it-works-timeline .howItWorks-swiper-pagination .swiper-pagination-bullet:not(.ts-how-it-works-timeline .howItWorks-swiper-pagination .swiper-pagination-bullet:last-child)::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: calc((100vw - 253px) / 4) !important;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  z-index: -10;
}
.ts-how-it-works-timeline .howItWorks-swiper-pagination .swiper-pagination-bullet-active {
  background-color: white;
  border: 2px solid rgb(255, 255, 255);
}

.ts-work-smarter {
  padding-block: 9.25rem 8.75rem;
}
.ts-work-smarter__images-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 115%;
  isolation: isolate;
}
@media (max-width: 991px) {
  .ts-work-smarter__images-inner {
    width: 130%;
  }
}
@media (max-width: 767px) {
  .ts-work-smarter__images-inner {
    width: 180%;
  }
}
@media (max-width: 550px) {
  .ts-work-smarter__images-inner {
    width: 200%;
    gap: 10px;
  }
}
.ts-work-smarter__images-inner .ts-center-slide {
  position: relative;
}
.ts-work-smarter__images-inner .ts-center-slide::before {
  content: "";
  position: absolute;
  left: 10.4%;
  top: -0.01%;
  width: 1px;
  background: rgb(48, 35, 174);
  animation: blinker 2s infinite;
  z-index: 100;
  height: clamp(9px, 1.2vw, 14px);
}
@media (min-width: 500px) {
  .ts-work-smarter__images-inner .ts-center-slide::before {
    height: clamp(11px, 1.2vw, 15px);
    top: 0.5%;
    width: 1px;
  }
}
@media (min-width: 800px) {
  .ts-work-smarter__images-inner .ts-center-slide::before {
    height: clamp(10px, 1.5vw, 16px);
    top: -0.25%;
    width: clamp(1px, 0.5vw, 1.5px);
  }
}
@media (min-width: 1200px) {
  .ts-work-smarter__images-inner .ts-center-slide::before {
    top: -0.18%;
    height: clamp(10px, 2vw, 18px);
  }
}
.ts-work-smarter__images-inner .ts-center-slide .ts-img {
  transform: scale(1.2);
}
.ts-work-smarter__images-inner .ts-center-slide .ts-edited {
  position: absolute;
  z-index: 2;
  width: 35%;
}
.ts-work-smarter__images-inner .ts-center-slide .ts-edited--headline {
  top: 2%;
  left: 28%;
}
.ts-work-smarter__images-inner .ts-center-slide .ts-edited--headline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(5px, 0.5vw, 8px);
  height: clamp(5px, 0.5vw, 8px);
  background: rgb(48, 35, 174);
  background: linear-gradient(15deg, rgb(48, 35, 174) 0%, rgb(200, 109, 215) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#3023ae", endColorstr="#c86dd7", GradientType=1);
  border-radius: 50%;
  animation: blinker 2s infinite;
}
@media (min-width: 800px) {
  .ts-work-smarter__images-inner .ts-center-slide .ts-edited--headline::before {
    width: clamp(5px, 0.7vw, 8px);
    height: clamp(5px, 0.7vw, 8px);
  }
}
.ts-work-smarter__images-inner .ts-center-slide .ts-edited--charts {
  top: 77%;
  left: 10%;
}
.ts-work-smarter__images-inner .ts-center-slide .ts-edited--image {
  top: 72%;
  left: 82%;
}
.ts-work-smarter__images-inner .ts-side-slide {
  opacity: 0.5;
  position: relative;
  z-index: -1;
}

@keyframes blinker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ts-success-story {
  position: relative;
  isolation: isolate;
}
.ts-success-story::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
  width: 500px;
  height: 500px;
  background: radial-gradient(46.55% 29.67% at 50% 50%, rgba(45, 87, 164, 0.3) 0%, rgba(6, 7, 77, 0) 100%);
  isolation: isolate;
}

.ts-work-smarter .swiper-slide,
.ts-success-story .swiper-slide,
.ts-sales .swiper-slide {
  opacity: 0.3;
  transition: all 300ms ease-in-out;
}
.ts-work-smarter .swiper-slide-active,
.ts-success-story .swiper-slide-active,
.ts-sales .swiper-slide-active {
  opacity: 1;
}

.ts-sales .tsSalesSwiper {
  position: relative;
}
.ts-sales .tsSalesSwiper::after, .ts-sales .tsSalesSwiper::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: clamp(60px, 12vw, 200px);
  z-index: 10;
  pointer-events: none;
}
.ts-sales .tsSalesSwiper::before {
  left: 0;
  background: linear-gradient(90deg, rgb(6, 7, 77) 0%, rgba(6, 7, 77, 0) 100%);
}
.ts-sales .tsSalesSwiper::after {
  right: 0;
  background: linear-gradient(90deg, rgba(6, 7, 77, 0) 0%, rgb(6, 7, 77) 100%);
}

.ts-image-comparison {
  position: relative;
  isolation: isolate;
  border-radius: 8px;
}
.ts-image-comparison::after, .ts-image-comparison::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(133deg, rgba(211, 224, 255, 0.14) 0%, rgba(255, 255, 255, 0.14) 100%);
  z-index: -10;
  border-radius: 8px;
}
.ts-image-comparison::before {
  top: -15px;
  right: -15px;
}
.ts-image-comparison::after {
  top: -30px;
  right: -30px;
}

.ts-custom-sorted ol.sortable,
.ts-custom-sorted ol.sortable ol {
  list-style-type: none;
  border-radius: 0.375rem;
  overflow: hidden;
}
.ts-custom-sorted ol.sortable li:not(.ts-custom-sorted ol.sortable li:last-child,
.ts-custom-sorted ol.sortable ol li:last-child),
.ts-custom-sorted ol.sortable ol li:not(.ts-custom-sorted ol.sortable li:last-child,
.ts-custom-sorted ol.sortable ol li:last-child) {
  border-bottom: 1px solid #d4d4d4;
}
.ts-custom-sorted .sortable li div {
  cursor: move;
  margin: 0;
}
.ts-custom-sorted li.mjs-nestedSortable-collapsed.mjs-nestedSortable-hovering div {
  border-color: #999;
}
.ts-custom-sorted .disclose,
.ts-custom-sorted .expandEditor {
  cursor: pointer;
  width: 20px;
  display: none;
}
.ts-custom-sorted .sortable li.mjs-nestedSortable-collapsed > ol {
  display: none;
}
.ts-custom-sorted .sortable li.mjs-nestedSortable-branch > div > .disclose {
  display: inline-block;
}
.ts-custom-sorted .sortable span.ui-icon {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.ts-custom-sorted .menuDiv {
  background: #fff;
  padding: 0.75rem !important;
}
.ts-custom-sorted .menuEdit {
  background: #fff;
}
.ts-custom-sorted .itemTitle {
  vertical-align: middle;
  cursor: pointer;
}
.ts-custom-sorted .deleteMenu {
  float: right;
  cursor: pointer;
}
.ts-custom-sorted h1 {
  font-size: 2em;
  margin-bottom: 0;
}
.ts-custom-sorted h2 {
  font-size: 1.2em;
  font-weight: 400;
  font-style: italic;
  margin-top: 0.2em;
  margin-bottom: 1.5em;
}
.ts-custom-sorted h3 {
  font-size: 1em;
  margin: 1em 0 0.3em;
}
.ts-custom-sorted dl {
  margin: 0;
}
.ts-custom-sorted dd {
  margin: 0;
  padding: 0 0 0 1.5em;
}
.ts-custom-sorted code {
  background: #e5e5e5;
}
.ts-custom-sorted input {
  vertical-align: text-bottom;
}
.ts-custom-sorted ul,
.ts-custom-sorted p {
  color: #212529;
}
.ts-custom-sorted .btn-close {
  font-size: 10px;
}
.ts-custom-sorted .hidden {
  display: none;
}

.ts-flex-grow {
  flex-grow: 1;
  display: flex;
  align-self: stretch;
}

.ts-fake-list p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ts-fake-list p::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #212529;
  border-radius: 50%;
}

.ts-pt-12 {
  padding-top: 0.75rem;
}

.tsSalesSwiper .swiper-slide {
  height: auto !important;
}
.tsSalesSwiper .ts-sales-card,
.tsSalesSwiper .swiper-content {
  height: 100% !important;
}
.tsSalesSwiper .ts-sales-card {
  display: flex;
  flex-direction: column;
}/*# sourceMappingURL=index.css.map */