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

.text-red {
  color: #FF3838;
}

a.text-red {
  text-decoration: none;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #2A343B;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(289deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
}

body {
  font-family: "Inter", sans-serif;
  color: rgba(17, 20, 45, 0.5);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  background-color: #F4F3F6;
}

.text-gradient {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-theme {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  padding: 8px 26px;
}

.btn-light {
  background-color: #fff;
  color: rgba(17, 20, 45, 0.7);
}
.btn-light.light-bg-btn:hover {
  border-color: #E4454A;
}
.btn-light.light-bg-btn:hover .text-gradient {
  color: #E4454A;
}
.btn-light.pause {
  color: rgba(17, 20, 45, 0.7);
}
.btn-light.pause:hover {
  color: #fff;
}

.btn-outline-light {
  padding: 8px 26px;
}

.btn-lg {
  border-radius: 8px;
  padding: 16px 44px;
  font-size: 24px;
  font-weight: 700;
}

.btns {
  display: inline-block;
  border-radius: 8px;
  padding: 8px 26px;
  font-size: 20px;
  font-weight: 700;
  height: 52px;
  max-width: -moz-max-content;
  max-width: max-content;
}

.btn-primary {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  border: 2px solid transparent;
  background: linear-gradient(to right, white, white), linear-gradient(to right, blue, #FF5C00);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  color: #E4454A;
}

.btn-outline-primary {
  border: 2px solid transparent;
  background: linear-gradient(to right, white, white), linear-gradient(to right, blue, #FF5C00);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  color: #E4454A;
}
.btn-outline-primary:hover {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  color: #fff;
  border: none;
}

.btn-light {
  background: #fff;
  border: 2px solid #fff;
  color: #fff;
}
.btn-light .text-gradient {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-light:hover {
  border: 2px solid #fff;
  background-color: transparent;
}
.btn-light:hover .text-gradient {
  all: unset;
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-light:hover {
  border: 2px solid #fff;
  background-color: #fff;
}
.btn-outline-light:hover .text-gradient-hover {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lg-btn {
  height: 60px;
  border-radius: 12px;
}

.sm-btn {
  height: 42px;
  font-size: 16px;
  line-height: 1;
  border-radius: 5px !important;
}

.section {
  margin-bottom: 60px;
}

.white-box {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  padding: 48px;
}

.white-box.half-box {
  border-radius: 20px;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.section-heading {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #11142D;
}
.section-heading .highlight {
  font-weight: 500;
}

.section-subhead {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -1px;
}

.sec-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.46px;
}

.theme-breadcrumb {
  padding: 60px 0px 30px 0px;
}
.theme-breadcrumb .breadcrumb-item {
  color: rgba(17, 20, 45, 0.5);
  text-decoration: none;
}

.page-title {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.46px;
  color: #E4454A;
}

.para-16 {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(17, 20, 45, 0.5);
}

.sec-title.red-title {
  color: #FF3838;
}

.form-control {
  font-size: 16px;
  font-weight: 300;
  border-radius: 8px;
  border: 1px solid rgba(17, 20, 45, 0.2);
  box-shadow: none !important;
}

.form-check-input {
  box-shadow: none !important;
}

.theme-modal .modal-content {
  border-radius: 20px;
  background: #FFF;
  overflow: hidden;
}
.theme-modal .modal-content .modal-logo {
  max-width: -moz-max-content;
  max-width: max-content;
  height: 34px;
}
.theme-modal .modal-content .box {
  padding: 20px;
  min-height: calc(100vh - 60px);
}
.theme-modal .left-box {
  background: linear-gradient(305deg, #293BE3 -3.53%, #CB1EB6 54.98%, #FF5C00 116.7%);
  height: 100%;
}
.theme-modal.modal-demo .modal-content .box {
  min-height: auto;
}
.theme-modal .form-box {
  color: rgba(17, 20, 45, 0.7);
}
.theme-modal .form-box label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}
.theme-modal .form-box .form-control {
  font-size: 13px;
  height: 42px;
  border-radius: 6px;
}
.theme-modal .form-box .tnc-text {
  font-size: 14px;
  max-width: 90%;
}
.theme-modal .form-box .tnc-text .text-red {
  color: #FF3838;
  font-weight: 500;
  text-decoration: none;
}
.theme-modal .form-box .btn-primary {
  max-width: 100%;
  width: 100%;
}
.theme-modal .form-box .icon-form-box {
  position: relative;
}
.theme-modal .form-box .icon-form-box .icon-left {
  position: absolute;
  left: 12px;
  top: 7px;
}
.theme-modal .form-box .icon-form-box .icon-right {
  position: absolute;
  right: 12px;
  top: 7px;
  cursor: pointer;
}
.theme-modal .form-box .icon-form-box .form-control {
  padding-left: 36px;
}
.theme-modal .continue-text {
  font-size: 14px;
  text-align: center;
  padding: 0px 12px;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 20px 0px;
}
.theme-modal .continue-text::before {
  content: "";
  width: 33%;
  height: 2px;
  background-color: #CDCED1;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0px;
}
.theme-modal .continue-text::after {
  content: "";
  width: 33%;
  height: 2px;
  background-color: #CDCED1;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  right: 0px;
}
.theme-modal .social-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 40px;
}
.theme-modal .social-login img {
  max-width: 100%;
  cursor: pointer;
}
.theme-modal .otp-input {
  display: flex;
  gap: 12px;
}
.theme-modal .otp-input .otpInPut {
  border-radius: 6px;
  border: 1px solid #CDCED1;
  background: #F5F6F7;
  width: 48px;
  height: 60px;
}
.theme-modal .password-conditions .cond {
  display: flex;
  align-items: center;
}
.theme-modal .password-conditions .cond-ic {
  color: #D1D8E1;
}
.theme-modal .password-conditions .cond-ic.comp-cond {
  color: #FF5C00;
}
.theme-modal .password-conditions .cond-text {
  color: #585B6C;
  font-size: 12px;
  font-weight: 400;
}

.theme-header {
  transition: top 0.2s ease-in-out;
}
.theme-header .navbar {
  padding: 20px 0px;
  background: linear-gradient(289deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
}

.nav-up {
  top: -155px;
}

.navbar-expand-xl .navbar-nav .nav-link {
  padding: 0px;
  margin-right: 26px;
  font-size: 14px;
  color: #fff;
}
.navbar-expand-xl .navbar-nav .nav-link.active {
  font-weight: 700;
}

.navbar-expand-xl .nav-item:nth-last-child(1) .nav-link {
  margin-right: 0px;
}

.timer {
  background: #11142D;
  padding: 8px 0px;
  position: relative;
  width: 100%;
  color: #fff;
}
.timer .timer-heading {
  font-size: 22px;
  line-height: 1;
}

.count-down-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
}
.count-down-box:nth-last-child(1) {
  margin-right: 0px;
}
.count-down-box .count-inner {
  display: flex;
  gap: 4px;
}
.count-down-box .count-inner .count {
  border-radius: 2px;
  background: linear-gradient(180deg, #585858 0%, rgba(255, 255, 255, 0.1) 100%);
  -webkit-backdrop-filter: blur(10.3726892471px);
          backdrop-filter: blur(10.3726892471px);
  padding: 4px 8px;
  color: #fff;
  font-size: 20px;
}
.count-down-box .count-name {
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
  text-transform: uppercase;
}

.home-banner {
  background: linear-gradient(289deg, #293BE3 14.26%, #CB1EB6 60.13%, #FF5C00 110.97%);
  width: 100%;
  height: auto;
}
.home-banner .banner-heading {
  color: #fff;
  font-size: 38px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -3.056px;
}
.home-banner .banner-heading span {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -4.44px;
  display: block;
}
.home-banner p {
  max-width: 80%;
}
.home-banner .dp-block {
  margin-bottom: 40px;
}
.home-banner .banner-robo {
  position: absolute;
  right: 0px;
  bottom: 0px;
  max-width: 100%;
}

.dp-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dp-block .dp {
  margin-right: 32px;
}
.dp-block .dp:nth-last-child(1) {
  margin-right: 0px;
}

.dp {
  width: 72px;
  height: 72px;
  border: 1.85px solid #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #D9D9D9;
}
.dp .dp-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo-section {
  padding: 30px 0px;
  background-color: #fff;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
}
.logo-section .strip-logo {
  max-width: 100%;
}

.try-tool {
  margin: 60px 0px;
}

.try-tool-box {
  padding: 60px 84px;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
}
.try-tool-box .shadow-gradient {
  width: 80%;
  height: 280px;
  border-radius: 826px;
  opacity: 0.6;
  background: linear-gradient(289deg, #293BE3 14.26%, #CB1EB6 60.13%, #FF5C00 110.97%);
  filter: blur(60.5753440857px);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.ai-feature-section {
  margin-bottom: 60px;
}
.ai-feature-section .ai-feature-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ai-feature-box {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  overflow: hidden;
}
.ai-feature-box .tab-content, .ai-feature-box .tab-pane {
  height: 100%;
}
.ai-feature-box .feature-tab-box {
  padding: 48px;
}
.ai-feature-box .feature-tab-box .nav-link {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  width: 100%;
}
.ai-feature-box .feature-tab-box .nav-link .grad-arrow-ic {
  opacity: 0;
}
.ai-feature-box .feature-tab-box .nav-link.active .grad-arrow-ic {
  opacity: 1;
}
.ai-feature-box .feature-tab-box .nav-link.active .tab-title {
  color: #FF3838;
  font-weight: 700;
}
.ai-feature-box .feature-tab-box .nav-link .tab-title {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -1px;
  max-width: 450px;
}
.ai-feature-box .feature-tab-box .nav-pills .nav-item:nth-last-child(1) .nav-link {
  padding-bottom: 0px;
  border-bottom: 0px;
}

.section.how-to .how-to-box {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}
.section.how-to .how-to-box .how-to-img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section.how-to .how-to-box .how-to-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: absolute;
  bottom: 24px;
  left: 20px;
}

.section.features .feature-box {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  padding: 48px;
}
.section.features .section-subhead {
  font-size: 22px;
  font-weight: 300;
  max-width: 600px;
  letter-spacing: -1px;
}
.section.features .img-feature-box {
  position: relative;
  height: 392px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
}
.section.features .img-feature-box .feature-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section.features .f-box-one .vid-ic {
  position: absolute;
  left: 24px;
  top: 24px;
}
.section.features .f-box-one .title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  color: #fff;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}
.section.features .f-box-six {
  background-image: url("../assets/images/feature/feature-6bg.png");
  background-size: cover;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  height: auto;
}
.section.features .f-box-six .girl-img {
  position: absolute;
  bottom: 0px;
  right: 0px;
  top: 0px;
  max-width: 100%;
  max-height: 100%;
}
.section.features .f-box-six .user-ic {
  position: absolute;
  left: 24px;
  top: 24px;
}
.section.features .f-box-six .btn-outline-light {
  position: absolute;
  left: 30px;
  bottom: 24px;
}
.section.features .f-box-nine {
  background-image: url("../assets/images/feature/feature-9bg.png");
  background-color: rgba(0, 73, 198, 0.05);
  background-size: cover;
  border-radius: 20px;
  background-repeat: no-repeat;
  background-position: center;
  height: auto;
}
.section.features .f-box-14 {
  background-color: rgba(0, 73, 198, 0.05);
}
.section.features .f-box-14 .btn-light {
  position: relative;
  top: -24px;
}
.section.features .box-seven {
  background-color: #7157BA;
}
.section.features .box-five {
  background-color: #B216D5;
}
.section.features .f-box-12 {
  background-color: #1F1996;
}
.section.features .f-box-12 .btn-outline-light {
  position: relative;
  top: -24px;
}
.section.features .box-two {
  background-color: #E4454A;
}
.section.features .box-three {
  background-image: url("../assets/images/feature/feature-3-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 36px 24px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.section.features .box-four .title {
  font-size: 20px;
  max-width: 330px;
  letter-spacing: -0.917px;
  margin-bottom: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.news-card {
  padding: 20px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0px 5.09556px 10.19112px -1.69852px rgba(25, 37, 50, 0.1), 0px 2.54778px 5.94482px -2.54778px rgba(25, 37, 50, 0.1), 0px 0px 0px 0.84926px rgba(25, 37, 50, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card .logo {
  max-width: -moz-max-content;
  max-width: max-content;
}
.news-card .star-blk {
  margin-bottom: 20px;
}
.news-card .star-blk .bi-star-fill {
  color: #FBB936;
}

.language .language-box {
  border-radius: 20px;
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  padding: 60px 44px;
}
.language .dp-card .dp {
  height: 136px;
  width: 136px;
}
.language .play-pause-btn {
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}

.sales-and-marketing {
  margin-bottom: 80px;
}
.sales-and-marketing .snm-box {
  padding: 32px 48px;
  background: linear-gradient(289deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  border-radius: 20px;
  color: #fff;
  position: relative;
}
.sales-and-marketing .snm-box .para-16 {
  color: #fff;
}
.sales-and-marketing .snm-box .snm-img {
  position: absolute;
  right: -70px;
  bottom: -38px;
}

.cta-section {
  border-bottom: 2px solid #FFF;
  background: #E4454A;
}
.cta-section .cta-box {
  padding: 48px;
}
.cta-section .section-heading {
  color: #fff;
}
.cta-section .section-heading .highlight {
  font-size: 42px;
  font-weight: 700;
}

.use-case-detail-img {
  height: 414px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.use-case-detail-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.vid-banner-img {
  height: 500px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.vid-banner-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.contact-form-box .form-control {
  height: 52px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -1px;
  border-radius: 8px;
  border: 1px solid rgba(17, 20, 45, 0.2);
  box-shadow: none;
}
.contact-form-box textarea.form-control {
  height: auto;
}

.map-box {
  height: 540px;
  width: 100%;
}
.map-box iframe {
  width: 100%;
  height: 100%;
}

.newsletter .btn-primary {
  height: 38px;
}

.resources {
  padding-top: 60px;
  background-color: #fff;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
}

.snm-box.resources-bx {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
}

.sample-video .sample-vid-card .sample-vid-img {
  height: 255px;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 12px;
}
.sample-video .sample-vid-card .sample-vid-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sample-video .sample-vid-card .title {
  font-size: 22px;
  color: rgba(17, 20, 45, 0.5);
}
.sample-video .sample-vid-card .btn-text {
  font-size: 20px;
  color: #FF3838;
  text-decoration: none;
  font-weight: 700;
}

.feedback .feature-box {
  padding-bottom: 90px !important;
}
.feedback .carousel-indicators {
  bottom: -60px;
}
.feedback .carousel-indicators button {
  all: unset;
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background-color: #D9D9D9;
  opacity: 1;
  margin-right: 8px;
  cursor: pointer;
}
.feedback .carousel-indicators button:nth-last-child(1) {
  margin-right: 0px;
}
.feedback .carousel-indicators button.active {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  height: 12px;
  width: 12px;
}
.feedback .review-card .star-blk .bi-star-fill {
  font-size: 24px;
  margin-right: 4px;
  color: #FBB936;
  margin-top: 12px;
  margin-bottom: 12px;
}
.feedback .review-card .star-blk .bi-star-fill:nth-last-child(1) {
  margin-right: 0px;
}
.feedback .review-card .review-para {
  font-size: 22px;
  font-weight: 500;
  color: rgba(17, 20, 45, 0.7);
  margin-bottom: 16px;
}
.feedback .review-card .reviewer-name {
  font-size: 22px;
  font-weight: 700;
  color: rgba(17, 20, 45, 0.7);
  margin-bottom: 12px;
}

.pricing-plans .swiper {
  padding-bottom: 60px;
}
.pricing-plans .swiper-pagination {
  bottom: 0px;
}
.pricing-plans .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #D9D9D9;
  opacity: 1;
}
.pricing-plans .swiper-pagination-bullet-active {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
}

.pricing-page .pricing-box {
  margin-top: 20px;
}

.pricing-box {
  margin-top: 80px;
}
.pricing-box .pricing-box-inner {
  background-color: #fff;
  border-radius: 20px 20px 0px 0px;
  padding: 40px 40px 20px 40px;
}

.pricing-card {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  border-radius: 18px;
  padding: 3px;
}
.pricing-card .card-inner {
  background-color: #fff;
  border-radius: 18px;
  padding: 30px 30px 30px 30px;
}
.pricing-card .popular-tag {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-style: normal;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin-bottom: 2px;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 8px;
  right: 16px;
}
.pricing-card .price {
  color: #11142D;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-card .pm {
  font-size: 16px;
  color: rgba(17, 20, 45, 0.5);
}
.pricing-card .pricing-title {
  color: rgba(17, 20, 45, 0.7);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0px;
}
.pricing-card .includes {
  font-weight: 15px;
  margin-bottom: 20px;
}
.pricing-card .list {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 16px;
}
.pricing-card .btns {
  background-color: rgba(17, 20, 45, 0.5);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}
.pricing-card.highlight {
  background: linear-gradient(289deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  color: #fff;
  position: relative;
}
.pricing-card.highlight .card-inner {
  background-color: transparent;
}
.pricing-card.highlight .price {
  color: #fff;
}
.pricing-card.highlight .pm {
  color: #fff;
}
.pricing-card.highlight .pricing-title {
  color: #fff;
}
.pricing-card.highlight .btns {
  background-color: #fff;
}
.pricing-card.highlight .btns:hover {
  background: transparent;
}

.pricing-tabs {
  position: absolute;
  max-width: -moz-max-content;
  max-width: max-content;
  left: 38%;
  top: -60px;
}
.pricing-tabs .nav-link {
  border-radius: 100px;
  border: 1px solid rgba(17, 20, 45, 0.1);
  background: #FFF;
  min-width: 125px;
  height: 52px;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: rgba(17, 20, 45, 0.7);
}
.pricing-tabs .nav-link.active, .pricing-tabs .nav-link .show > .nav-link {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  border: 0px solid transparent;
}
.pricing-tabs .nav-item {
  position: absolute;
}
.pricing-tabs .nav-item:nth-child(1) {
  left: 0px;
  z-index: 3;
}
.pricing-tabs .nav-item:nth-child(1) .nav-link {
  text-align: center;
}
.pricing-tabs .nav-item:nth-child(2) {
  left: 75px;
  z-index: 2;
}
.pricing-tabs .nav-item:nth-child(3) {
  left: 150px;
  z-index: 1;
}
.pricing-cta {
  background-color: #11142D;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0px 0px 20px 20px;
}
.pricing-cta .title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.pricing-tabs-sec {
  background-color: #F4F3F6;
  padding: 20px 0px;
  overflow: hidden;
}
.pricing-tabs-sec .tab-contain {
  position: relative;
  display: flex;
  justify-content: center;
  left: 62px;
}
.pricing-tabs-sec .pricing-tabs {
  position: static;
}
.pricing-tabs-sec .pricing-tabs .nav-item {
  position: relative;
}
.pricing-tabs-sec .pricing-tabs .nav-item:nth-child(2) {
  left: -55px;
}
.pricing-tabs-sec .pricing-tabs .nav-item:nth-child(3) {
  left: -120px;
}

.pricing-plans.bg-white .pricing-box {
  margin-top: 60px;
}

.payment-status {
  padding: 30px 0px;
}
.payment-status .transaction-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 36px 24px;
}

.table-contain {
  border-radius: 6px;
}

.comparePlan-table th, .comparePlan-table td {
  vertical-align: middle;
  text-align: center;
}
.comparePlan-table .header-one th, .comparePlan-table .header-two th {
  color: #fff;
}
.comparePlan-table .header-two th:nth-child(1) {
  text-align: left;
  border-radius: 20px 0px 0px 0px;
}
.comparePlan-table .header-two th:nth-last-child(1) {
  border-radius: 0px 20px 0px 0px;
}
.comparePlan-table .header-two {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
}
.comparePlan-table .header-two th {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 32px;
  line-height: 1;
}
.comparePlan-table .header-two th .price-title {
  font-size: 16px;
  margin-bottom: 8px;
}
.comparePlan-table .header-two th .price span {
  display: block;
  font-size: 16px;
  line-height: 1;
}
.comparePlan-table .header-two th:nth-child(1) {
  text-align: left;
}
.comparePlan-table tbody td {
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: none;
  background-color: #fff;
}
.comparePlan-table tbody td:nth-child(1) {
  text-align: left;
}
.comparePlan-table.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: #F9F9FB;
}
.comparePlan-table tfoot {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
}
.comparePlan-table tfoot .lg-btn {
  height: 48px;
}
.comparePlan-table tfoot td {
  padding: 2px 2px;
  border: none;
}
.comparePlan-table tfoot td button {
  width: 100%;
  max-width: 100%;
  border-radius: 0px;
}
.comparePlan-table tfoot td:nth-child(1) {
  border-radius: 0px 0px 0px 20px;
}
.comparePlan-table tfoot td:nth-last-child(1) {
  border-radius: 0px 0px 20px 0px;
}
.comparePlan-table tfoot td:nth-last-child(1) button {
  border-radius: 0px 0px 20px 0px;
}
.comparePlan-table thead tr th:nth-child(1), .comparePlan-table thead tr td:nth-child(1), .comparePlan-table tbody tr th:nth-child(1), .comparePlan-table tbody tr td:nth-child(1), .comparePlan-table tfoot tr th:nth-child(1), .comparePlan-table tfoot tr td:nth-child(1) {
  padding-left: 30px;
}

.compareCompete thead th {
  padding: 14px 8px;
  background-color: #11142D !important;
}
.compareCompete thead th .thead-link {
  color: rgba(255, 255, 255, 0.8);
}
.compareCompete tbody td {
  padding: 8px 8px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(17, 20, 45, 0.7) !important;
}
.compareCompete .thead-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
}

.subscribe-now .section-heading {
  color: rgba(17, 20, 45, 0.7);
  font-weight: 500;
  font-style: italic;
}
.subscribe-now .section-heading .highlight {
  color: #FF3838;
}

.faq-section .accordion-item {
  border-radius: 20px;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  --bs-accordion-btn-icon: url("../assets/icons/acc-plus.svg");
  --bs-accordion-btn-active-icon: url("../assets/icons/acc-minus.svg");
}
.faq-section .accordion-item .accordion-button {
  padding: 40px 32px;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  color: #11142D;
  border-radius: 20px !important;
}
.faq-section .accordion-item .accordion-body {
  padding: 0px 30px 16px 30px;
}
.faq-section .accordion-item .accordion-body .para {
  font-size: 16px;
  color: rgba(17, 20, 45, 0.5);
}
.faq-section .accordion-item .accordion-button:not(.collapsed) {
  color: #11142D;
  background: none;
  border: none;
  box-shadow: none;
}
.faq-section .accordion-item .accordion-button:focus {
  border: none;
  box-shadow: none;
}
.faq-section .accordion-item .accordion-button::after {
  width: 42px;
  height: 42px;
  background-size: 42px;
}

.price-plan-table {
  padding: 60px 0px;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  background-color: #fff;
}

.steps-tabs .nav-pills {
  margin-bottom: 36px;
  border-radius: 100px;
  border: 1px solid rgba(17, 20, 45, 0.5);
  overflow: hidden;
  height: 48px;
  width: 100%;
}
.steps-tabs .nav-pills .nav-item {
  height: 100%;
  min-width: 20%;
  overflow: hidden;
}
.steps-tabs .nav-pills .nav-item .nav-link {
  background-color: #fff;
  color: rgba(17, 20, 45, 0.5);
  height: 100%;
  width: 100%;
  font-size: 22px;
  line-height: 1;
  position: relative;
  min-width: 20%;
}
.steps-tabs .nav-pills .nav-item .nav-link.active {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  color: #fff;
  font-weight: 700;
  -webkit-clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 13% 50%, 0% 0%);
          clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 13% 50%, 0% 0%);
}
.steps-tabs .nav-pills .nav-item:nth-child(1) .nav-link.active {
  -webkit-clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 0% 50%, 0% 0%);
          clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 0% 50%, 0% 0%);
}
.steps-tabs .nav-pills .nav-item:nth-last-child(1) .nav-link.active {
  -webkit-clip-path: polygon(85% 0%, 200% 50%, 85% 100%, 0% 100%, 13% 50%, 0% 0%);
          clip-path: polygon(85% 0%, 200% 50%, 85% 100%, 0% 100%, 13% 50%, 0% 0%);
}

.join-community .join-comm-box {
  width: 100%;
  height: 459px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.join-community .join-comm-box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.join-community .join-comm-box .btn-primary.btn-lg {
  height: 72px;
  font-size: 20px;
}
.join-community .comm-text {
  width: 100%;
  position: absolute;
  bottom: 30px;
  padding: 0px 24px;
}
.join-community .comm-text .title {
  color: #FFF;
  font-size: 32px;
  line-height: 1.2;
}

.footer {
  background-color: #11142D;
}
.footer .inner-box {
  padding: 36px 0px;
}
.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.footer .copyright {
  padding: 30px 0px 20px 0px;
}
.footer .foot-para {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
}
.footer .foot-hr {
  margin: 0px;
  margin-bottom: 16px;
}
.footer .foot-navlist-head {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.footer .foot-navlist {
  list-style: none;
  padding-left: 0rem;
}
.footer .foot-navlist li {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.5;
}
.footer .foot-navlist li a {
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}
.footer .foot-navlist li a:hover {
  color: #FF3838;
}

.change-logs {
  background: #FEFEFE;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  padding: 24px 0px;
}

.log-help-tag {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  padding: 16px 20px;
  display: flex;
  max-width: -moz-max-content;
  max-width: max-content;
}

.help-blk {
  display: flex;
  gap: 4px;
  align-items: center;
}
.help-blk .help-title {
  color: rgba(17, 20, 45, 0.7);
  font-size: 16px;
  font-weight: 500;
}

.help-circle {
  width: 22px;
  height: 22px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.log-timeline .log-timeline-inner {
  padding-left: 40px;
  border-left: 2px dashed rgba(17, 20, 45, 0.5);
  padding-bottom: 40px;
}
.log-timeline .log-timeline-inner:nth-last-child(1) {
  padding-bottom: 0px;
}
.log-timeline .load-more-blk {
  padding-left: 42px;
  margin-top: 56px;
}
.log-timeline .acc-title {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
}
.log-timeline .acc-title::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
  display: inline-block;
  position: absolute;
  top: 0px;
  left: -49px;
}

.timeline-acc .accordion-item {
  margin-bottom: 12px;
  border-bottom: 0px;
  border-radius: 10px;
}
.timeline-acc .accordion-item:nth-last-child(1) {
  margin-bottom: 0px;
}
.timeline-acc .accordion-button {
  background-color: #FFF;
  color: #11142D;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  padding: 12px 16px;
  box-shadow: none !important;
  border-radius: 10px !important;
}
.timeline-acc .accordion-button .help-circle {
  height: 32px;
  width: 32px;
  font-size: 16px;
}
.timeline-acc .accordion-body {
  padding: 8px 16px 4px 16px;
}
.timeline-acc .accordion-body .update-list {
  padding-left: 3rem;
  list-style: none;
}
.timeline-acc .accordion-body .update-list li {
  font-size: 16px;
  color: rgba(17, 20, 45, 0.5);
  margin-bottom: 16px;
  position: relative;
  padding-left: 26px;
}
.timeline-acc .accordion-body .update-list li::after {
  content: "";
  background-image: url("../assets/icons/check-circle.svg");
  display: block;
  position: absolute;
  top: 3px;
  left: 0px;
  height: 18px;
  width: 18px;
}
.timeline-acc .accordion-button:focus {
  border-color: unset !important;
}

.story-sec .left-pt-60 {
  padding-top: 60px;
}

.change-logs.about-pg {
  box-shadow: none;
  background-color: transparent;
  margin-bottom: 24px;
  padding: 0px;
}

.log-timeline.about-timeline .log-timeline-inner {
  padding-left: 0px;
  border-left: 0px dashed rgba(17, 20, 45, 0.5);
  padding-bottom: 40px;
}
.log-timeline.about-timeline .acc-title::after {
  display: none;
}

.team {
  background-color: #fff;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  padding-top: 60px;
}
.team .pb-team {
  padding-bottom: 60px;
}

.member-card .member-img {
  width: 100%;
  height: auto;
  max-width: 290px;
  margin-bottom: 12px;
}
.member-card .member-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.member-card .member-name {
  color: #000;
  font-size: 22px;
  margin-bottom: 0px;
}
.member-card .member-digi {
  font-size: 16px;
  font-weight: 400;
  color: rgba(17, 20, 45, 0.7);
  margin-bottom: 14px;
}
.member-card .para {
  line-height: 1.5;
}

.team-desktop-img {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.plan-contain {
  margin-bottom: 60px;
}

.createPlanTable th, .createPlanTable td {
  font-size: 16px;
  font-weight: 500;
  padding: 16px 8px;
}
.createPlanTable th:nth-child(1), .createPlanTable td:nth-child(1) {
  text-align: left;
  padding-left: 30px;
}
.createPlanTable th:nth-child(2), .createPlanTable td:nth-child(2) {
  min-width: 250px;
}
.createPlanTable thead tr {
  background: linear-gradient(104deg, #293BE3 -7.67%, #CB1EB6 46.84%, #FF5C00 104.34%);
}
.createPlanTable thead tr th {
  color: #fff;
  font-size: 20px;
}
.createPlanTable thead tr th:nth-child(1) {
  text-align: left;
  border-radius: 20px 0px 0px 0px;
}
.createPlanTable thead tr th:nth-last-child(1) {
  border-radius: 0px 20px 0px 0px;
}
.createPlanTable tbody td {
  color: rgba(17, 20, 45, 0.7);
}
.createPlanTable tbody td:nth-child(1) {
  max-width: 380px;
}
.createPlanTable .range-slider {
  width: 100%;
}
.createPlanTable .range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - 73px);
  height: 10px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
.createPlanTable .range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.createPlanTable .range-slider__range::-webkit-slider-thumb:hover {
  background: #FF3838;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
}
.createPlanTable .range-slider__range:active::-webkit-slider-thumb {
  background: #FF3838;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
}
.createPlanTable .range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 6px 12px -2px rgba(25, 37, 50, 0.1), 0px 3px 7px -3px rgba(25, 37, 50, 0.1), 0px 0px 0px 1px rgba(25, 37, 50, 0.1);
  cursor: pointer;
  -moz-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
}
.createPlanTable .range-slider__range::-moz-range-thumb:hover {
  background: #FF3838;
}
.createPlanTable .range-slider__range:active::-moz-range-thumb {
  background: #FF3838;
}
.createPlanTable .range-slider__range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #FF3838;
}
.createPlanTable .range-slider__value {
  display: inline-block;
  position: relative;
  width: 60px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #fff;
  padding: 5px 10px;
  margin-left: 8px;
}
.createPlanTable .range-slider__value:after {
  position: absolute;
  top: 8px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #fff;
  border-bottom: 7px solid transparent;
  content: "";
}
.createPlanTable .range-slider__value {
  all: unset;
}
.createPlanTable ::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}
.createPlanTable input::-moz-focus-inner,
.createPlanTable input::-moz-focus-outer {
  border: 0;
}

.toggle-yesno {
  display: flex;
  align-items: center;
  gap: 20px;
}
.toggle-yesno .form-switch .form-check-input {
  width: 48px;
  height: 24px;
}
.toggle-yesno .form-check-input:checked {
  background-color: #FF3838;
  border-color: #FF3838;
}
.toggle-yesno .form-check-input:focus {
  border-color: #FF3838;
  box-shadow: none;
}
.toggle-yesno .form-switch .form-check-input:not(:checked) {
  background-image: url("../assets/icons/circle-check.svg");
}

.grand-total {
  padding: 48px;
  background-color: #11142D;
  border-radius: 20px;
}

.bg-yellow {
  background-color: #FBB936;
}

.bg-purple {
  background-color: #E51B9C;
}

.bg-blue {
  background-color: #4536DC;
}

.bg-orange {
  background-color: #E84052;
}

.bg-red {
  background-color: #FF3838;
}

.br-20px {
  border-radius: 20px;
}/*# sourceMappingURL=style.css.map */