@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.theme-btn {
  background-image: linear-gradient(to right, #b71cd2 0%, #350ae7 51%, #b71cd2 100%);
  background-size: 200% auto;
  padding: 0.5rem 0.75rem;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
  border-radius: 5px;
}
.theme-btn:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.toggle-btn {
  /***** Spin Animation *****/
}
.toggle-btn #menuToggle {
  display: none;
}
.toggle-btn .toggle {
  position: relative;
  width: 30px;
  cursor: pointer;
  margin: auto;
  display: block;
  height: 34px;
}
.toggle-btn .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 2px;
  background: #b71cd2;
  color: inherit;
  opacity: 1;
  transition: none 0.35s cubic-bezier(0.5, -0.35, 0.35, 1.5) 0s;
}
.toggle-btn .bar--top {
  bottom: calc(50% + 11px + 2px);
  transition-property: bottom, transform;
  transition-delay: 0.35s, 0s;
}
.toggle-btn .bar--middle {
  top: calc(50% - 2px);
  transition-property: opacity;
  transition-delay: 0.35s;
  width: 80%;
}
.toggle-btn .bar--bottom {
  top: calc(50% + 11px + 2px);
  transition-property: top, transform;
  transition-delay: 0.35s, 0s;
}
.toggle-btn[aria-expanded=true] #menuToggle:checked + .toggle .bar--top {
  bottom: calc(50% - 2px);
  transform: rotate(135deg);
  transition-delay: 0s, 0.35s;
}
.toggle-btn[aria-expanded=true] #menuToggle:checked + .toggle .bar--middle {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: 0.35s;
}
.toggle-btn[aria-expanded=true] #menuToggle:checked + .toggle .bar--bottom {
  top: calc(50% - 2px);
  transform: rotate(225deg);
  transition-delay: 0s, 0.35s;
}

.sec-label {
  font-size: 14px;
  color: #515862;
  text-transform: uppercase;
  font-weight: bold;
}

.lead {
  font-size: 14px;
  color: #515862;
  font-weight: 500;
}

.sec-title {
  font-weight: bold;
  color: #c0cbdb;
}

body {
  font-size: 1rem;
  font-family: "Manrope", sans-serif;
  background-color: #ffffff;
  color: #515862;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

header {
  position: relative;
  background: #ffffff;
  width: 100%;
  z-index: 99999;
  top: 0;
  padding: 1rem 0;
  transition: all linear 100ms;
}
header.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
header.header-fixed .navbar {
  padding: 0;
}
@media (max-width: 991px) {
  header .navbar-collapse {
    order: order-3;
  }
}
header .navbar-brand {
  flex: 1;
  text-align: center;
}
header .navbar-brand img {
  width: 80px;
}
@media (min-width: 475px) {
  header .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  header .navbar-brand img {
    width: 100px;
  }
}
header .nav-link,
header .download-btn {
  font-size: 13px;
}
header .download-btn i {
  display: none;
}
header .navbar-nav .nav-link {
  color: #515862;
  font-weight: 600;
}
header .navbar-nav .nav-link:hover, header .navbar-nav .nav-link.active {
  color: #b71cd2;
}
header .close-wrap {
  display: none;
}

.hero-section {
  padding: 2rem 0;
}
.hero-section .hero-content {
  color: #212121;
}

.features-section .nav-wrapper .nav {
  margin-bottom: -20px;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #515862;
  border-radius: 10px;
  align-items: center;
  overflow-y: hidden;
  overflow-x: auto;
  flex-wrap: nowrap;
  justify-content: center;
}
@media (max-width: 1200px) {
  .features-section .nav-wrapper .nav {
    justify-content: start;
  }
}
.features-section .nav-wrapper .nav .nav-link {
  color: #515862;
  border: none !important;
  border-radius: inherit;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  padding: 1rem 0.75rem;
}
.features-section .nav-wrapper .nav .nav-link svg {
  color: inherit;
  width: 16px;
  height: 16px;
}
.features-section .nav-wrapper .nav .nav-link.active {
  color: #b71cd2;
}
.features-section .nav-wrapper .nav .nav-item:not(:last-child) .nav-link::after {
  content: "";
  background-color: #515862;
  height: 16px;
  width: 2px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
}
.features-section .tab-wrapper {
  background-color: #091930;
  padding: 4rem 0 0;
}
.features-section .tab-wrapper .sec-label,
.features-section .tab-wrapper .lead {
  color: #9fa9b9;
}
.features-section .tab-wrapper .sec-title {
  color: #c0cbdb;
  font-weight: bold;
}
.features-section .tab-wrapper .lead {
  font-size: 14px;
}
.features-section .tab-wrapper .feature-wrapper {
  position: relative;
  overflow: hidden;
}
.features-section .tab-wrapper .feature-wrapper .feature-item {
  position: relative;
  text-align: center;
  min-height: 150px;
  padding: 30px 25px 20px 25px;
}
.features-section .tab-wrapper .feature-wrapper .feature-item h3 {
  color: #c0cbdb;
  font-size: 1rem;
  font-weight: bold;
}
.features-section .tab-wrapper .feature-wrapper .feature-item p {
  font-size: 13px;
  color: #9fa9b9;
}
.features-section .tab-wrapper .feature-wrapper .feature-item::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: -2px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(211, 211, 211, 0) 0%, rgba(211, 211, 211, 0.75) 100%);
}
.features-section .tab-wrapper .feature-wrapper .feature-item::after {
  content: "";
  width: 100%;
  position: absolute;
  height: 0;
  top: auto;
  left: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(to right, rgba(211, 211, 211, 0.75) 0%, rgba(211, 211, 211, 0) 100%);
}
.features-section .tab-wrapper .feature-wrapper .row .col-6:nth-child(1) .feature-item::after {
  background: linear-gradient(to left, rgba(159, 169, 185, 0.75) 0%, rgba(159, 169, 185, 0) 100%);
}
.features-section .tab-wrapper .feature-wrapper .row .col-6:nth-child(4) .feature-item::before {
  background: linear-gradient(to bottom, rgba(159, 169, 185, 0.75) 0%, rgba(159, 169, 185, 0) 100%);
}

.tab-feature-sec {
  position: relative;
  background-color: #ebeef8;
  padding: 3rem 0 0;
}
.tab-feature-sec .sec-title {
  color: #515862;
}
.tab-feature-sec .nav-pills {
  max-width: 350px;
}
.tab-feature-sec .nav-pills .nav-link {
  background-color: #ffffff;
  color: #515862;
  font-size: 1rem;
  padding: 1rem;
  border-radius: 5px;
  position: relative;
  background: #ffffff;
}
.tab-feature-sec .nav-pills .nav-link::after {
  content: "";
  display: inline-block;
  width: 0px;
  height: 0px;
  border: 15px solid transparent;
  border-left-color: transparent;
  border-right-width: 0px;
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%);
}
.tab-feature-sec .nav-pills .nav-link.active {
  color: #ffffff !important;
  background: linear-gradient(to right, #b71cd2 0%, #350ae7 100%) !important;
}
.tab-feature-sec .nav-pills .nav-link.active::after {
  border-left-color: #350ae7;
}
.tab-feature-sec .bg-img {
  min-height: 350px;
}
.tab-feature-sec .image-overlay-text {
  max-width: 500px;
  width: 100%;
  background-color: #091930;
  padding: 1.5rem 2rem;
}
.tab-feature-sec .image-overlay-text img {
  position: absolute;
  top: -40px;
  left: 0px;
}
.tab-feature-sec .image-overlay-text span {
  color: #c0cbdb;
  font-size: 13px;
  font-weight: 500;
}

.slider-sec {
  background-color: #091930;
  margin-top: -10px;
}
.slider-sec .lead {
  color: #c0cbdb;
  font-size: 13px;
}
.slider-sec .slider-card {
  padding: 1rem;
}
.slider-sec .slider-card img {
  border: 1px solid #515862;
  border-radius: 10px;
  box-shadow: rgba(81, 88, 98, 0.2) 0px 7px 29px 0px;
}
.slider-sec .slider-card h5 {
  font-size: 1rem;
  font-weight: bold;
  color: #c0cbdb;
}
.slider-sec .slider-card p {
  font-size: 13px;
  color: #9fa9b9;
}
.slider-sec .slider-card:hover h5 {
  color: #b71cd2;
}
.slider-sec .slick-disabled {
  background: #ffffff;
  color: #515862;
}

.faq-sec {
  position: relative;
  overflow: hidden;
}
.faq-sec .left-content {
  padding: 2rem;
}
.faq-sec .accordion-item {
  background-color: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 0 !important;
}
.faq-sec .accordion-button {
  font-weight: 600;
  font-size: 14px;
  font-weight: bold;
  padding-right: 3rem;
  position: relative;
  border: 0;
  box-shadow: none;
}
.faq-sec .accordion-button:focus {
  border: 0 !important;
  box-shadow: none;
}
.faq-sec .toggle-icon {
  font-size: 13px;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2;
  z-index: 99;
  background: #E7E9ED;
  color: #515862;
  background-size: 200% auto;
}
.faq-sec .toggle-icon i {
  transition: transform 0.3s ease;
}
.faq-sec .accordion-button::after,
.faq-sec .accordion-button:not(.collapsed)::after {
  background-image: none;
}
.faq-sec .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #b71cd2;
}
.faq-sec .accordion-body {
  padding-top: 0;
  font-weight: 600;
  font-size: 14px;
  color: #515862;
}
.faq-sec .faq-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.accordion-button[aria-expanded=true] + .toggle-icon {
  color: #ffffff;
  background-image: linear-gradient(to right, #b71cd2 0%, #350ae7 51%, #b71cd2 100%);
}
.accordion-button[aria-expanded=true] + .toggle-icon i {
  transform: rotate(180deg);
}

.get-started-sec {
  max-width: 900px;
  margin-inline: auto;
  border-radius: 10px;
  margin-bottom: -30px;
  margin-top: 2rem;
  position: relative;
  background: #b71cd2;
  background: linear-gradient(90deg, #b71cd2 10%, #350ae7 100%);
  background-size: 200% auto;
}
.get-started-sec .text-content {
  max-width: 800px;
  margin-inline: auto;
}
.get-started-sec .sec-title,
.get-started-sec p {
  color: #ffffff;
}
.get-started-sec .sec-title {
  font-weight: bold;
}
.get-started-sec .get-started-btn {
  background-color: #ffffff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  font-size: 14px;
  color: #515862;
  font-weight: 500;
  transition: transform 0.3s;
}
.get-started-sec .get-started-btn:hover {
  transform: translateY(-4px);
}

.footer-sec {
  padding-top: 4rem;
  background-color: #091930;
  color: #c0cbdb;
}
.footer-sec .social-links a {
  color: #ffffff;
  background-color: #515862;
  display: inline-flex;
  text-decoration: none;
  height: 25px;
  width: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-sec .social-links a:hover {
  color: #b71cd2;
}
.footer-sec h5,
.footer-sec .about-text {
  font-size: 14px;
  color: #9fa9b9;
  font-weight: 600;
}
.footer-sec .first-ft {
  border-right: 1px solid #515862;
}
.footer-sec .last-ft {
  border-left: 1px solid #515862;
}
.footer-sec .store-btn {
  font-size: 1.25rem;
  background: #515862;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 5px;
  transition: all 0.3s;
}
.footer-sec .store-btn:hover {
  background-color: #b71cd2;
  color: #ffffff;
}
.footer-sec .footer-links a {
  font-size: 13px;
  color: #9fa9b9;
  text-decoration: none;
  position: relative;
  padding: 0 6px;
}
.footer-sec .footer-links a:hover {
  color: #b71cd2;
}
.footer-sec .footer-bottom {
  background-color: #060c0f;
}
.footer-sec .footer-bottom p {
  color: #9fa9b9;
}

@media only screen and (max-width: 991px) {
  header .navbar-toggler {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    z-index: 999;
  }
  header .navbar-toggler:focus {
    box-shadow: none;
    border-color: none;
  }
  header .navbar-collapse {
    padding: 0.75rem 0.125rem;
    position: fixed;
    left: -300px;
    width: 200px;
    height: 100vh;
    min-height: 100vh;
    top: 0;
    bottom: 0;
    z-index: 99;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: left 0.3s ease-in-out;
  }
  header .navbar-collapse .navbar-nav {
    gap: 0.25rem !important;
    padding-top: 50px;
  }
  header .navbar-collapse .navbar-nav .nav-item:nth-of-type(2) {
    margin-top: 2rem;
  }
  header .navbar-collapse .navbar-nav .nav-item.dropdown .dropdown-menu {
    text-align: start !important;
    border-radius: 0;
  }
  header .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.5rem 0.75rem;
    text-align: start;
    position: relative;
  }
  header .navbar-collapse.show {
    left: 0;
    transition: left 0.3s ease-in-out;
  }
  header .navbar-collapse.show .close-wrap {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 10px;
  }
  header .navbar-collapse.show .close-wrap .close-btn {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 576px) {
  .feature-item::after, .feature-item::before {
    content: initial !important;
  }
}/*# sourceMappingURL=style.css.map */