@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%;
}/*# sourceMappingURL=common.css.map */