/**
* Template Name: iLanding
* Template URL: https://bootstrapmade.com/ilanding-bootstrap-landing-page-template/
* Updated: Nov 12 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1453D2;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #1453D2;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d83fd;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1453D2;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #409dfd;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--nav-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.index-page.scrolled header {
  padding-top: 0px;
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 0%);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #1453D2;
  font-size: 16px;
  padding: 10px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: #0b41ad;
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 1052px) {
  .benefit-usecase {
    position: relative;
  }

  .benefit-usecase-bg img {
    position: absolute;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
  }

  .benefit-usecase-bg {
    position: unset !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: 300;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* .footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
} */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/* .scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
} */

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background: transparent linear-gradient(90deg, #1453D2 0%, #BD40DD 100%) 0% 0% no-repeat padding-box;
  border-radius: 4px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 150px;
  /* background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%); */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%); */
  pointer-events: none;
}

.hero .hero-content {
  position: relative;
  z-index: 1;
}

.hero .hero-content .Performance {
  font-size: 72px;
  font-weight: bold;
  color: #ffffff;
  line-height: 2;
  padding: 0 20px 0 20px;
  clip-path: polygon(0 12%, 110% 1%, 100% 100%, 0 86%);
  /* clip-path: polygon(0 10%, 125% 1%, 100% 100%, 0 85%); */
  background: transparent linear-gradient(90deg, #1453D2 0%, #BD40DD 100%) 0% 0% no-repeat padding-box;
}

.hero .hero-content .Calculation {
  font-size: 72px;
  font-weight: bold;
  color: #ffffff;
  padding: 0 20px 0 20px;
  line-height: 1.2;
  clip-path: polygon(0 0%, 100% 15%, 100% 90%, 0 100%);
  background: transparent linear-gradient(90deg, #1453D2 0%, #BD40DD 100%) 0% 0% no-repeat padding-box;
}

.hero .hero-content h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  align-items: center;
  /* margin-bottom: 1.5rem; */
}

.hero .hero-content .precision {
  margin-bottom: 0;
  width: 90%;
}

.hero .hero-content .simplified {
  margin-bottom: 0;
  width: 110%;
}

.hero .hero-content .hero-shape-dot {
  position: absolute;
  top: 15%;
  left: 5%;
}

.hero .hero-content .hero-shape-dot img {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 25px)
  }
}

.hero .hero-content .hero-shape-star1 {
  position: absolute;
  left: 20%;
}

.hero .hero-content .hero-shape-star1 img {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

.hero .hero-content .hero-shape-star2 img {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

.hero .hero-content .hero-shape-star3 img {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

@keyframes animate_1 {
  0% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }

  50% {
    transform: rotate(180deg) scale(1.1) translate(0, 0);
    -webkit-transform: rotate(180deg) scale(1) translate(0, 0)
  }

  100% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }
}

.hero .hero-content .hero-shape-circle1 {
  position: absolute;
  left: 32%;
}

.hero .hero-content .hero-shape-circle2 {
  position: absolute;
  left: 76%;
  top: 6%;
}

.hero .hero-content .hero-shape-circle2 img {
  -webkit-animation: animate_3 alternate 10s ease-out infinite;
  animation: animate_3 alternate 10s ease-out infinite;
}

.hero .hero-content .hero-shape-circle3 img {
  -webkit-animation: animate_4 alternate 10s ease-out infinite;
  animation: animate_4 alternate 10s ease-out infinite;
}

@keyframes animate_3 {
  0% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.5) translate(2vw, -2vw)
  }

  100% {
    transform: scale(1) translate(0, 0)
  }
}

@keyframes animate_4 {
  0% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.5) translate(.5vw, -.5vw);
  }

  100% {
    transform: scale(1) translate(0, 0)
  }
}

.hero .hero-content .hero-shape-star2 {
  position: absolute;
  left: 90%;
}

.hero .hero-content .hero-shape-star3 {
  position: absolute;
  top: 22%;
}

.hero .hero-content .hero-shape-circle3 {
  position: absolute;
  top: 35%;
  left: 5%;
}

.hero .hero-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  /* width: 95%; */
  color: #4B4B4B;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero .hero-content p span {
  font-size: 18px;
  font-weight: 400;
}

.hero .hero-left-arrow {
  position: absolute;
  left: 10px;
  bottom: 380px;
}

.hero .hero-right-arrow {
  position: absolute;
  bottom: 400px;
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .btn-primary {
  background-color: transparent;
  border-color: 1px solid #1453D2;
  color: #1453D2;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background-color: #1453D2;
  color: #ffffff;
  /* border-color: color-mix(in srgb, var(--accent-color), black 20%); */
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .btn-link:hover {
  color: var(--accent-color);
}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero .hero-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.how-it-works {
  position: relative;
}

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

.how-it-works .how-it-works-bg img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.icon-boxes {
  position: relative;
}

.Card-animate:hover{
  transform: translateY(-15px) !important;
  transition: all 0.5s !important;
}


.how-it-works .number-1 {
  position: absolute;
  height: 128px;
  width: 128px;
  background: url(../img/How-it-works/data-load-blog.png);
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 30px;
  left: -5px;
  top: -48px;
}

.how-it-works .number-2 {
  position: absolute;
  height: 128px;
  width: 128px;
  background: url(../img/How-it-works/Fund-creation-blog.png);
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 30px;
  left: 7px;
  top: -48px;
}

.how-it-works .number-3 {
  position: absolute;
  height: 128px;
  width: 128px;
  background: url(../img/How-it-works/model-mapping-blog.png);
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 30px;
  left: -5px;
  top: -48px;
}

.how-it-works .number-4 {
  position: absolute;
  height: 128px;
  width: 128px;
  background: url(../img/How-it-works/reporting-blog.png);
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 30px;
  left: -5px;
  top: -48px;
}

.how-it-works .number-5 {
  position: absolute;
  height: 128px;
  width: 128px;
  background: url(../img/How-it-works/performance-blog.png);
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-left: 20px;
  right: -29px;
  top: -48px;
}

.icon-boxes .rt-icon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 99;
}

.icon-boxes .icon-box {
  text-align: left;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #BCBCBC99;
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  transition: all 0.5s;
  z-index: 1;
}

.icon-boxes {
  width: 100%;
}

.icon-boxes .icon-size {
  width: 54px;
  height: 54px;
}

.icon-box .icon {
  position: relative;
  padding-bottom: 5px;
}

.icon-box .Data-config {
  background: #FFF1E3;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  z-index: 9;
}

.icon-box .fund-creation {
  background: #E1EBFF;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  z-index: 9;
}

.icon-box .model-map {
  background: #BBFFE5;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  z-index: 9;
}

.icon-box .reporting {
  background: #F8DFFF;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  z-index: 9;
}

.icon-box .perf-calc {
  background: #FFF5DF;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  z-index: 9;
}

.icon-boxes .icon-box .card-heading {
  font-size: 18px;
  font-family: 'poppins';
  font-weight: 500;
  color: #333333;
  margin-bottom: 10px;
}

.icon-boxes .icon-box p {
  font-size: 15px;
  font-weight: 300;
  line-height: 24px;
  color: #333333;
  margin-bottom: 0 !important;
}

/* <!-- How it Works Section Mahe--> */

.container-margin-bottom {
  margin-bottom: 200px;
}

.container-margin-top {
  margin: 100px 0
}

.arrow_1 img {
  position: absolute;
  top: -20px;
  right: -50px;
  width: 80px;
}

.arrow_2 img {
  position: absolute;
  top: -60px;
  right: 0px;
  width: 80px;
}

.arrow_3 img {
  position: absolute;
  bottom: -230px;
  right: 0;
  width: 180px;
}

.arrow_4 img {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 80px;
}

.process-shape-dot {
  position: absolute;
  top: 19%;
  left: -10%
}

.process-shape-dot img {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 30px)
  }
}

.process-shape-dot-Blue {
  position: absolute;
  top: 91%;
  left: 85%;
}

.process-shape-dot-Blue img {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 30px)
  }
}

.process-shape-star1 {
  position: absolute;
  right: 10px;
  bottom: -80px;
}

.process-shape-star1 img {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

.process-shape-star2 img {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

.process-shape-star3 img {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

@keyframes animate_1 {
  0% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }

  50% {
    transform: rotate(180deg) scale(1.1) translate(0, 0);
    -webkit-transform: rotate(180deg) scale(1) translate(0, 0)
  }

  100% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }
}

.process-shape-circle1 {
  position: absolute;
  left: 0px;
  bottom: -170px;
}

.process-shape-circle2 {
  position: absolute;
  left: 70%;
  top: -120px;
}

.process-shape-circle3 {
  position: absolute;
  right: -350px;
  top: 30px;
}

.process-shape-circle1 img {
  -webkit-animation: animate_3 alternate 10s ease-out infinite;
  animation: animate_3 alternate 10s ease-out infinite;
}

.process-shape-circle2 img {
  -webkit-animation: animate_4 alternate 10s ease-out infinite;
  animation: animate_4 alternate 10s ease-out infinite;
}

.process-shape-circle3 img {
  -webkit-animation: animate_4 alternate 10s ease-out infinite;
  animation: animate_4 alternate 10s ease-out infinite;
}

@keyframes animate_3 {
  0% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.5) translate(2vw, -2vw)
  }

  100% {
    transform: scale(1) translate(0, 0)
  }
}

@keyframes animate_4 {
  0% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.5) translate(.5vw, -.5vw);
  }

  100% {
    transform: scale(1) translate(0, 0)
  }
}

.process-shape-star2 {
  position: absolute;
  right: -140px;
}

.process-shape-star3 {
  position: absolute;
  top: -50%;
  left: 100px;
}

/* <!-- How it Works Section Mahe--> */

@media (max-width: 992px) {}

@media (max-width: 992px) {}

@media (max-width: 992px) {}



@media (max-width: 992px) {}

@media (max-width: 992px) {}

/*--------------------------------------------------------------
# Suvaranjith Features Section
--------------------------------------------------------------*/

.features {
  position: relative;
}

.Seamless-Data-Integration {
  position: relative;
}

.fun-creation {
  position: relative;
}

.Performance-Calculation {
  position: relative;
}

.advanced-reporting {
  position: relative;
}

.features .feature-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.features .features-item-head {
  font-family: Poppins;
  font-size: 32px;
  background-image: linear-gradient(90deg, #1453D2 0%, #BD40DD 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  font-weight: 700;
  margin: 10px 0;
  position: relative;
  z-index: 5;
  padding-bottom: 10px;
}

.features-item-icons {
  margin: 0 0 20px;
}

.features-item-icons img {
  padding: 10px;
  border-radius: 8px;
  width: 60px;
}

.features-item-icons .performance-icon-bg {
  background-color: #E1EBFF;
}

.features-item-icons .seamless-icon-bg {
  background-color: #F8DFFF;
}

.features-item-icons .fund-icon-bg {
  background-color: #E1EBFF;
}

.features-item-icons .advanced-icon-bg {
  background-color: #F8DFFF;
}

.bi-check::before {
  display: none;
}

.features-item ul {
  padding: 0 0 0 16px;
}

.features-item ul li {
  margin-bottom: 10px;
}

.features-item ul li::marker {
  color: #9CA6E6;
}

.features-item ul li span {
  color: #333333;
  font-weight: 300;
  font-size: 15px;
}

.features .list-head {
  font-weight: 600;
  margin-bottom: 15px;
  color: #2A2A2A;
}

.features .features-item {
  padding: 40px 0;
  margin: 0 0 20px;
}

.features-item .img-fluid {
  z-index: 1;
}

.features-item .img-fluid img {
  width: 100%;
}

.features .features-item .seamless {
  padding-left: 90px;
}

.features .features-item .advanced {
  padding-left: 70px;
}

.Performance-Calculation .features-section-bg-performance {
  height: 556px;
  width: 34%;
  position: absolute;
  right: 0;
  background: transparent linear-gradient(223deg, #1453D2 0%, #684AD7 41%, #BD40DD 100%) 0% 0% no-repeat padding-box;
  border-radius: 50px 0px 0px 50px;
  z-index: 0;
  /* display: block; */
}

.Seamless-Data-Integration .features-section-bg-performance {
  width: 31%;
  height: 500px;
  position: absolute;
  left: 0;
  background: transparent linear-gradient(45deg, #1453D2 0%, #684AD7 41%, #BD40DD 100%) 0% 0% no-repeat padding-box;
  border-radius: 0px 50px 50px 0px;
  z-index: 0;
}

.fun-creation .features-section-bg-performance {
  width: 31%;
  height: 532px;
  position: absolute;
  right: 0;
  background: transparent linear-gradient(318deg, #1453D2 0%, #684AD7 41%, #BD40DD 100%) 0% 0% no-repeat padding-box;
  border-radius: 50px 0px 0px 50px;
  z-index: 0;
}

.advanced-reporting .features-section-bg-performance {
  width: 31%;
  height: 610px;
  position: absolute;
  left: 0;
  background: transparent linear-gradient(139deg, #1453D2 0%, #684AD7 41%, #BD40DD 100%) 0% 0% no-repeat padding-box;
  border-radius: 0px 50px 50px 0px;
  z-index: 0;
}

.Performance-Calculation .align-items-center .features-gradient-bg.performance {
  position: absolute;
  top: 0;
  left: 0;
  width: 418px;
  height: 284px;
  transform: matrix(1, -0.02, 0.02, 1, 0, 0);
  background: transparent linear-gradient(0deg, #BD40DD 0%, #1453D2 100%) 0% 0% no-repeat padding-box;
  opacity: 0.13;
  filter: blur(50px);
}

.Seamless-Data-Integration .align-items-center .features-gradient-bg.performance {
  position: absolute;
  top: 20px;
  left: 250px;
  width: 418px;
  height: 304px;
  transform: matrix(-1, -0.02, 0.02, -1, 0, 0);
  background: transparent linear-gradient(180deg, #BD40DD 0%, #1453D2 100%) 0% 0% no-repeat padding-box;
  opacity: 0.13;
  filter: blur(50px);
}

.fun-creation .align-items-center .features-gradient-bg.performance {
  position: absolute;
  top: 40px;
  left: -20px;
  width: 418px;
  height: 304px;
  transform: matrix(-1, -0.02, 0.02, -1, 0, 0);
  background: transparent linear-gradient(180deg, #BD40DD 0%, #1453D2 100%) 0% 0% no-repeat padding-box;
  opacity: 0.13;
  filter: blur(50px);
}

.advanced-reporting .align-items-center .features-gradient-bg.performance {
  position: absolute;
  top: 50px;
  right: 0;
  width: 418px;
  height: 335px;
  transform: matrix(-1, -0.02, 0.02, -1, 0, 0);
  background: transparent linear-gradient(180deg, #BD40DD 0%, #1453D2 100%) 0% 0% no-repeat padding-box;
  opacity: 0.13;
  filter: blur(50px);
}

.Performance-Calculation .arrow img {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 120px;
}

.Seamless-Data-Integration .arrow img {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 120px;
}

.fun-creation .arrow img {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 120px;
}

/* CIRCLE */
.Performance-Calculation .align-items-center .purple-circle {
  position: absolute;
  left: 0;
  top: 0;
}

.Seamless-Data-Integration .align-items-center .purple-circle {
  position: absolute;
  left: -40px;
  top: 0;
}

.fun-creation .align-items-center .purple-circle.circle-1 {
  position: absolute;
  left: 480px;
  top: -40px;
}

.fun-creation .align-items-center .purple-circle.circle-2 {
  position: absolute;
  right: 30px;
  bottom: 40px;
}

.advanced-reporting .align-items-center .purple-circle.circle-1 {
  position: absolute;
  left: -60px;
  top: 0;
}

.advanced-reporting .align-items-center .purple-circle.circle-2 {
  position: absolute;
  right: 160px;
  bottom: -50px;
}

.features .purple-circle {
  -webkit-animation: animate_4 alternate 10s ease-out infinite;
  animation: animate_4 alternate 10s ease-out infinite;
}


@keyframes animate_3 {
  0% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.5) translate(2vw, -2vw)
  }

  100% {
    transform: scale(1) translate(0, 0)
  }
}

/* PATTAN */
.Performance-Calculation .align-items-center .purple-pattan {
  position: absolute;
  left: 0;
  top: -70px;
  z-index: 1;
}

.Performance-Calculation .blue-pattan {
  position: absolute;
  left: -200px;
  top: 360px;
  z-index: 1;
}

.Seamless-Data-Integration .blue-pattan {
  position: absolute;
  right: 210px;
  top: 360px;
  z-index: 1;
}

.Seamless-Data-Integration .purple-pattan {
  position: absolute;
  left: -490px;
  bottom: 170px;
  z-index: 1;
}

.fun-creation .blue-pattan.pattan-1 {
  position: absolute;
  left: -190px;
  top: 340px;
  z-index: 1;
}

.fun-creation .purple-pattan.pattan-1 {
  position: absolute;
  right: -80px;
  bottom: 0;
  z-index: 1;
}

.fun-creation .blue-pattan.pattan-2 {
  position: absolute;
  left: 150px;
  top: -80px;
  z-index: 1;
}

.advanced-reporting .blue-pattan.pattan-1 {
  position: absolute;
  right: 210px;
  top: 310px;
  z-index: 1;
}

.advanced-reporting .purple-pattan.pattan-1 {
  position: absolute;
  left: 40px;
  top: -80px;
  z-index: 1;
}

.features .purple-pattan {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

.features .blue-pattan {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 30px)
  }
}

/* STAR */
.Performance-Calculation .align-items-center .blue-star {
  position: absolute;
  right: 112px;
  top: -40px;
}

.Seamless-Data-Integration .align-items-center .blue-star.star-1 {
  position: absolute;
  left: -90px;
  bottom: 80px;
}

.Seamless-Data-Integration .align-items-center .blue-star.star-2 {
  position: absolute;
  left: 300px;
  bottom: -40px;
}

.Seamless-Data-Integration .align-items-center .purple-star.star-1 {
  position: absolute;
  left: 360px;
  top: -40px;
}

.fun-creation .align-items-center .blue-star.star-1 {
  position: absolute;
  left: -50px;
  bottom: 10px;
}

.fun-creation .align-items-center .blue-star.star-2 {
  position: absolute;
  right: 320px;
  bottom: -45px;
}

.fun-creation .align-items-center .blue-star.star-3 {
  position: absolute;
  right: -40px;
  top: 0;
}

.advanced-reporting .align-items-center .blue-star.star-1 {
  position: absolute;
  right: -10px;
  bottom: 0;
}

.advanced-reporting .align-items-center .blue-star.star-2 {
  position: absolute;
  left: -170px;
  bottom: 160px;
}

.features .blue-star {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

@keyframes animate_1 {
  0% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }

  50% {
    transform: rotate(180deg) scale(1.1) translate(0, 0);
    -webkit-transform: rotate(180deg) scale(1) translate(0, 0)
  }

  100% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }
}

/*--------------------------------------------------------------
# Suvaranjith Features Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Suvaranjith Use-case Section
--------------------------------------------------------------*/
.use-case {
  position: relative;
  background-color: transparent;
}

.use-case .use-case-star1 {
  position: absolute;
  left: 30%;
  top: 10%;
}

.use-case .use-case-star2 {
  position: absolute;
  left: 55%;
  top: 20%;
}

.use-case .use-case-star3 {
  position: absolute;
  left: 30%;
  bottom: 25%;
}

.use-case .use-case-dot1 {
  position: absolute;
  bottom: 20%;
  left: -10%;
}

.use-case .use-case-dot2 {
  position: absolute;
  top: 0;
  right: 0;
}


.use-case .use-case-circle1 {
  position: absolute;
  bottom: 48%;
  left: -80px;
}

.use-case .use-case-circle2 {
  position: absolute;
  top: 47%;
  right: 30%;
}

.use-case .use-case-circle3 {
  position: absolute;
  top: 5%;
  right: 12%;
}

.use-case .use-case-arrow {
  position: absolute;
  top: 100%;
  left: 66%;
  /* bottom: 20%;
  left: 38%; */
}

.use-case .section-title h2 {
  text-align: left;
}

.use-case .section-title h2::after {
  right: 580px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background: transparent linear-gradient(90deg, #1453D2 0%, #BD40DD 100%) 0% 0% no-repeat padding-box;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.use-case .section-title p {
  font-size: 15px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  color: #2A2A2A;
}

.use-case .icon-box .icon {
  position: relative;
  padding-bottom: 5px;
}

.use-case .mt-0 {
  margin-top: 0;
}

.use-case .icon-boxes .icon-box {
  text-align: left;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 10px #BCBCBC99;
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  transition: all 0.5s;
  z-index: 1;
}

.use-case .use-case-left-gradient {
  position: absolute;
  top: 100px;
  left: 0px;
  width: 418px;
  height: 304px;
  transform: matrix(-1, -0.02, 0.02, -1, 0, 0);
  background: transparent linear-gradient(180deg, #BD40DD 0%, #1453D2 100%) 0% 0% no-repeat padding-box;
  opacity: 0.13;
  filter: blur(50px);
}

.use-case .use-case-gradient-bg {
  position: absolute;
  top: 80px;
  left: 140px;
  width: 418px;
  height: 304px;
  transform: matrix(-1, -0.02, 0.02, -1, 0, 0);
  background: transparent linear-gradient(180deg, #BD40DD 0%, #1453D2 100%) 0% 0% no-repeat padding-box;
  opacity: 0.13;
  filter: blur(50px);
}

.use-case .icon-box .Family-offices {
  background: #D9FFF2;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  /* z-index: 9; */
}

.use-case .icon-box .Asset-management-firm {
  background: #E6F0FF;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  /* z-index: 9; */
}

.use-case .icon-box .wealth-management {
  background: #F8DFFF;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 15px;
  /* z-index: 9; */
}

.use-case .use-star {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

@keyframes animate_1 {
  0% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }

  50% {
    transform: rotate(180deg) scale(1.1) translate(0, 0);
    -webkit-transform: rotate(180deg) scale(1) translate(0, 0)
  }

  100% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }
}

.use-case .use-circle {
  -webkit-animation: animate_4 alternate 10s ease-out infinite;
  animation: animate_4 alternate 10s ease-out infinite;
}


@keyframes animate_3 {
  0% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.5) translate(2vw, -2vw)
  }

  100% {
    transform: scale(1) translate(0, 0)
  }
}

.use-case .use-dot {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 30px)
  }
}

/*--------------------------------------------------------------
# Suvaranjith Use-case Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Suvaranjith benifits Section
--------------------------------------------------------------*/

.benefit-usecase {
  /* position: relative; */
}

/* .benefit-usecase-bg {
  background-image: url(../img/Use-case/Usecase-benefits-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
} */

.benefit-usecase-bg img {
  position: absolute;
  width: 1905px;
  height: 1250px;
}

/*--------------------------------------------------------------
# Suvaranjith Featured Services Section
--------------------------------------------------------------*/
.benefit-services h2 {
  color: #fff;
}

.section-title .benefits:after {
  background: #ffffff;
}

.container.section-title.aos-init.aos-animate {
  padding: 0 10px 20px 10px;
}

.benefit-services .container.section-title.aos-init.aos-animate {
  padding: 0 10px 50px 10px;
}

.benefit-services .service-item {
  padding: 30px 12px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  text-align: center;
  border-radius: 15px;
}

.benefit-services .service-item .icon {
  margin-bottom: 20px;
}

/* mahe */
.service-item:hover .icon svg path {
  stroke: #000;
}

.benefit-services .service-item h4 {
  font-family: var(--nav-font);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}

.benefit-services .service-item h4 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.benefit-services .service-item p {
  color: #fff;
  line-height: 24px;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 0;
}

.benefit-services .service-item:hover {
  transform: translateY(-10px);
  background-color: var(--surface-color);
  /* box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1); */
  box-shadow: 0px 0px 12px #2300A2;
}

.benefit-services .service-item:hover h4 .Accuracy {
  color: #EF6262;
}

.benefit-services .service-item:hover h4 .Automation {
  color: #ecd500;
}

.benefit-services .service-item:hover h4 .Customization {
  color: #FF942A;
}

.benefit-services .service-item:hover h4 .Scalability {
  color: #00C9A0;
}


.benefit-services .service-item:hover p {
  color: #2A2A2A;
}

/*--------------------------------------------------------------
# Suvaranjith benifits Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Suvaranjith Faq Section
--------------------------------------------------------------*/
.faq {
  position: relative;
  background-image: url();
  padding-bottom: 120px;
}

.faq .dot-pattern-b {
  position: absolute;
  top: 10%;
  left: -170px;
}

.faq .dot-pattern-b img {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 30px)
  }
}

.faq .dot-pattern-b .dot-pattern-p .purple-star .blue-circle .purple-circle svg {
  width: 100%;
  height: 100%;
  /* display: block; */
}

.faq .dot-pattern-p {
  position: absolute;
  top: 84%;
  left: 85%;
}

.faq .dot-pattern-p img {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 30px)
  }
}

.faq .purple-star {
  position: absolute;
  top: 72px;
  left: 183px;
}

.faq .purple-star img {
  animation: rotateStar 10s linear infinite;
}

@keyframes rotateStar {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.faq .blue-circle {
  position: absolute;
  bottom: 50px;
  left: 600px;
}

.faq .blue-circle img {
  -webkit-animation: animate_4 alternate 10s ease-out infinite;
  animation: animate_4 alternate 10s ease-out infinite;
}

.faq .purple-circle {
  position: absolute;
  bottom: 430px;
  right: 320px;
}

.faq .purple-circle img {
  -webkit-animation: animate_4 alternate 10s ease-out infinite;
  animation: animate_4 alternate 10s ease-out infinite;
}

.faq .bg-gradiant {
  position: absolute;
  background: linear-gradient(358deg, #BD40DD 0%, #1453D2 100%) 0% 0% no-repeat padding-box;
  opacity: 0.13;
  filter: blur(50px);
  width: 418px;
  height: 360px;
  top: 94px;
  left: -179px;
}

.faq .faq-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.faq .section-title {
  padding-bottom: 20px;
}


.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 2px;
  background: transparent linear-gradient(90deg, #1453D2 0%, #BD40DD 100%) 0% 0% no-repeat padding-box;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #F3F5FC;
  border: 1px solid #D5E3FF;
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item .star {
  margin-right: 12px;
}

.faq .faq-container .faq-item h3 {
  font-family: var(--nav-font);
  font-weight: 400;
  font-size: 16px;
  color: #2A2A2A;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item h3 .star:hover path {
  fill: var(--accent-color);
}


.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-cnt {
  width: 70%;
}

.faq .faq-container .faq-item .faq-content .Quest {
  font-size: 15px;
  font-weight: 300;
  color: #2A2A2A;
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-content ul {
  font-size: 15px;
  font-weight: 300;
  color: #2A2A2A;
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-content .Quest ul li::marker {
  color: #1453d2;
}

.faq .faq-container .faq-item .faq-content p {
  font-size: 15px;
  font-weight: 300;
  color: #2A2A2A;
  margin-bottom: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 23px;
  right: 22px;
  font-size: 18px;
  font-weight: 600;
  color: #C1C1C1;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: #F3F5FC;
  border-color: #D5E3FF;
  /* box-shadow: 0px 0px 10px rgb(0 149 67 / 38%);
  box-shadow: 0px 0px 5px rgb(0 149 67 / 100%); */
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 .star path {
  fill: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Suvaranjith Global Footer (Mahe)
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-image: url();
  background-color: #F2F9FE;
  padding: 60px 0;
}

.footer .dot-pattern-b {
  position: absolute;
  top: 30px;
  left: -188px;
}

.footer .dot-pattern-b img {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 30px)
  }
}

.footer .dot-pattern-p {
  position: absolute;
  top: 230px;
  right: 215px;
}

.footer .dot-pattern-p img {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 30px)
  }
}

.footer .footer-left .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-left .logo img {
  max-height: 70px;
  margin-right: 6px;
}

.footer-link a {
  font-size: 16px;
  font-weight: 400;
  margin: 0 10px 0 0;
}

.footer-link {
  margin-bottom: 30px;
}

.footer-link span {
  font-size: 16px;
  color: #1453D2;
  font-weight: 500;
  margin: 0 10px 0 0;
}

.ft-ic {
  margin-right: 15px;
}

.footer .footer-left p {
  font-size: 15px;
  font-weight: 300;
  color: #2A2A2A;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 0px;
  line-height: 32px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}


.copyright {
  font-size: 15px;
  color: #2A2A2A;
  font-weight: 300;
  line-height: 26px;
}

/*--------------------------------------------------------------
# Suvaranjith  Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #3F52E3;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #293ac0;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Suvaranjith  Scroll Top Button
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Request Demo Section
--------------------------------------------------------------*/
.request {
  width: 100%;
  backdrop-filter: blur(10px);
  position: relative;
  padding: 120px 0 100px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* .request .request-bg img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
} */

.request-bg {
  background-image: url(../img/Request-demo/Req-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}


.request .container {
  position: relative;
  z-index: 3;
}

.request .request-demo-img {
  width: 290px;
  margin-bottom: 30px;
}

.request h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  font-family: Poppins;
}

.request p {
  color: #ffff;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  width: 70%;
}

.request .gradient {
  position: absolute;
  margin-top: 2%;
  margin-left: 48%;
}

.request .rt-frm {
  padding: 0 12px;
}

.request .php-email-form {
  background: #FFFFFF;
  /* border: 1px solid #6091f5; */
  box-shadow: 0px 0px 12px #1453D240;
  padding: 30px 30px 40px 30px;
  min-height: 100%;
  border-radius: 10px;
  min-height: auto;
  width: 100%;
}

.form-floating {
  position: relative;
}

.form-floating>label {
  color: #c1c1c1;
}

.request .php-email-form input,
.request .php-email-form textarea {
  background: #ffffff 0% 0%;
  border: 0.5px solid #B5B5B5;
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
}

.validate {
  display: none;
  color: red;
  margin: 0 0 0px 0;
  font-weight: 400;
  font-size: 13px;
}

.request .php-email-form textarea {
  padding: 12px 15px;
}

.request .php-email-form input,
.request .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
}

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

.form-control {
  color: #C9C9C9;
}

.form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
  background-color: transparent !important;

}

.form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  color: #a0a0a0;
  font-size: 14px;
}

.form-floating>.form-control-plaintext:focus,
.form-floating>.form-control-plaintext:not(:placeholder-shown),
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  color: #2A2A2A;
  font-size: 17px;
}

.form-control:hover {
  border-color: #1453D2 !important;
}

.request .php-email-form button[type=submit] {
  background: linear-gradient(to right, #1453D2, #BD40DD);
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  transition: 0.5s;
  border: 0px;
}

.request .php-email-form button[type=submit]:hover {
  background-position: 100% 0;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.request .php-email-form button[type=submit]:hover {
  color: #fff;
  background: #1453D2;
  box-shadow: 0px 0px 14px #1453D2;
}

/* .request .php-email-form button[type=submit]:hover {
  background: linear-gradient(120deg, transparent, #0e45b4, transparent, #a433c0, transparent);
  transform: skewX(-20deg);
  animation: shine 0.9s ease-in-out;
}

@keyframes shine {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
} */

.hide {
  display: none !important;
}

.text-area-height {
  height: 150px !important;
}

/*.loader {
  border: 2px solid #333;
  border-radius: 50%;
  border-top: 2px solid #fff;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}*/

.loader {
  border: 3px solid #f3f3f3;
  border-radius: 50%;
  border-top: 3px solid #3498db;
  width: 20px;
  height: 20px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  display: inline-block;
  position: relative;
  top: 4px;
  left: -7px;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.request .request-color-bg {
  position: absolute;
  width: 40%;
  height: 540px;
  left: 0;
  background: transparent linear-gradient(135deg, #BD40DD 0%, #1453D2 100%) 0% 0% no-repeat padding-box;
  border-radius: 0px 50px 50px 0px;
}

.request .request-bg-gradient {
  position: absolute;
  bottom: 20px;
  right: 140px;
  width: 318px;
  height: 334px;
  transform: matrix(1, -0.02, 0.02, 1, 0, 0);
  background: transparent linear-gradient(0deg, #BD40DD 0%, #1453D2 100%) 0% 0% no-repeat padding-box;
  opacity: 0.15;
  filter: blur(50px);
}

.request .arrow img {
  position: absolute;
  right: 50%;
  bottom: 60px;
  width: 180px;
}

/* ---------
pattern
--------- */
.request .request-left .purple-pattan.pattan-1 {
  position: absolute;
  left: 240px;
  top: 0;
  z-index: 1;
}

.request .purple-pattan {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

.request .blue-pattan {
  transform: translate(200px, 0);
  z-index: 1;
  -webkit-animation-name: bounce-1;
  animation-name: bounce-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

@keyframes bounce-1 {
  0% {
    transform: translate(200px, 0)
  }

  100% {
    transform: translate(200px, 30px)
  }
}

/* ----------
circle
---------- */
.request .request-left .purple-circle.circle-1 {
  position: absolute;
  left: 350px;
  top: 170px;
  z-index: 1;
}

.request .request-left .blue-circle.circle-1 {
  position: absolute;
  left: 480px;
  top: 341px;
  z-index: 1;
}

.request .request-left .blue-circle.circle-2 {
  position: absolute;
  left: -160px;
  top: 241px;
  z-index: 1;
}

.request .blue-circle {
  -webkit-animation: animate_4 alternate 10s ease-out infinite;
  animation: animate_4 alternate 10s ease-out infinite;
}

.request .purple-circle {
  -webkit-animation: animate_4 alternate 10s ease-out infinite;
  animation: animate_4 alternate 10s ease-out infinite;
}


@keyframes animate_3 {
  0% {
    transform: scale(1) translate(0, 0)
  }

  50% {
    transform: scale(1.5) translate(2vw, -2vw)
  }

  100% {
    transform: scale(1) translate(0, 0)
  }
}

/* ----------
star
---------- */
.request .request-left .blue-star.star-1 {
  position: absolute;
  right: 710px;
  top: 0;
}

.request .request-left .purple-star.star-1 {
  position: absolute;
  left: -40px;
  top: 110px;
}

.request .request-left .purple-star.star-2 {
  position: absolute;
  left: 250px;
  bottom: 60px;
}

.request .blue-star {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

.request .purple-star {
  -webkit-animation: animate_1 backwards 10s ease-out infinite !important;
  animation: animate_1 backwards 10s ease-out infinite;
}

@keyframes animate_1 {
  0% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }

  50% {
    transform: rotate(180deg) scale(1.1) translate(0, 0);
    -webkit-transform: rotate(180deg) scale(1) translate(0, 0)
  }

  100% {
    transform: rotate(0) scale(1) translate(0, 0);
    -webkit-transform: rotate(0) scale(1) translate(0, 0)
  }
}

/* --------------------------Request Demo subitted successfully------------------------ */

.pb-20 {
  padding-bottom: 20px;
}

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

.success-cnt {
  height: 500px;
  align-items: center;
}

.failure-cnt {
  height: 500px;
  align-items: center;
}

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

.pb-10 {
  padding: 10px 0 10px 0;
}

::after,
::before {
  box-sizing: border-box;
}

.success-icon i {
  font-size: 3rem;
  color: green;
}

.bx {
  font-family: 'boxicons' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak-as: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.success-msg {
  padding-top: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--nav-hover-color);
}

.error-msg {
  padding-top: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #ff0000;
}

/* -----------------------------------------------------------
privacy-policy-popup 
---------------------------------------------------------- */
.privacy-policy-popup .privacy-popup-width {
  max-width: 85%;
}

.privacy-policy-popup .modal-header {
  border-bottom: 0px;
  padding: 40px 60px 0 60px;
  justify-content: center;
}

.privacy-policy-popup .modal-title {
  font-size: 32px;
  font-weight: 700;
  background-image: linear-gradient(90deg, #1453D2 0%, #BD40DD 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-policy-popup .modal-body {
  padding: 40px 60px 40px;
}

.privacy-policy-popup .modal-header .close {
  background-color: var(--white-backcolor);
  position: absolute;
  top: -20px;
  right: -20px;
  width: 54px;
  height: 54px;
  background-color: #fff;
  border-radius: 999px;
  border: 0;
  opacity: 1;
  z-index: 9999999;
}

.privacy-policy-popup .modal-body p {
  font-size: 15px;
  font-weight: 300;
  color: #333333;
  text-align: justify;
}

.modal-header .close:hover {
  /* background-color:var(--white-backcolor); */
  opacity: 1 !important;
}

.modal-backdrop.show {
  opacity: 0.6;
}

.privacy-policy-popup .modal-content {
  box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
  border-radius: .5rem;
  position: relative;
}

.modal {
  z-index: 9999;
}

@media (min-width: 312px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-img {
    max-width: 60%;
    margin: 1.75rem auto;
  }
}

@media (max-width: 640px) {
  /* .modal-dialog {
    margin: 1rem;
  } */
}

@media (max-width: 768px) {
  .privacy-policy-popup .modal-body {
    padding: 40px 40px 40px;
  }
}

@media (max-width: 425px) {
  .privacy-policy-popup .modal-header {
    padding: 30px 30px 0 30px;
    justify-content: left;
  }

  .privacy-policy-popup .modal-body {
    padding: 30px 30px 30px;
  }
}

textarea {
  height: 148px;
}

/* -----------------------------------------------------------
privacy-policy-popup 
---------------------------------------------------------- */

/* Media query */

@media (max-width: 1024px) {
  .hero .hero-right-arrow {
    position: absolute;
    width: 15%;
    height: 15%;
    top: 38%;
    left: 85%;
  }

  .hero .hero-left-arrow {
    position: absolute;
    width: 15%;
    height: 15%;
    left: 0%;
    bottom: 48%;
  }

  .hero .hero-content .hero-shape-circle1 {
    z-index: -1;
  }

  .arrow_1 img {
    display: none;
  }

  .arrow_2 img {
    display: none;
  }

  .arrow_3 img {
    display: none;
  }

  .arrow_4 img {
    display: none;
  }

  .container-margin-top {
    margin-bottom: 0;
  }

  .container-margin-bottom {
    margin-bottom: 78px;
  }

  .process-shape-star3 {
    z-index: -1;
  }

  .Performance-Calculation {
    padding-top: 0;
  }

  .Performance-Calculation .features-section-bg-performance {
    height: 455px;
    width: 450px;
    bottom: 145px;
  }

  .Seamless-Data-Integration {
    padding-top: 0;
  }

  .fun-creation {
    padding-top: 0;
  }

  .fun-creation .features-section-bg-performance {
    width: 455px;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    width: 450px;
  }

  .advanced-reporting {
    padding-top: 0;
  }

  .advanced-reporting .features-section-bg-performance {
    width: 450px;
  }

  .Performance-Calculation .blue-pattan{
    display: none;
  }

  .fun-creation .blue-pattan.pattan-1{
    display: none;
  }

  .use-case .use-case-circle1{
    display: none;
  }

  .use-case .use-circle{
    display: none;
  }

  /* Request Demo */
  .request .request-left .purple-pattan.pattan-1 {
    z-index: -1;
  }

  .request .request-left .blue-circle.circle-1 {
    z-index: -1;
  }

  /* Request Demo */

}

@media (max-width: 991px) {
  .Performance-Calculation .features-section-bg-performance {
    bottom: 90px;
    height: 480px;
  }

  .Performance-Calculation .blue-pattan {
    z-index: 1;
    opacity: 80%;
    display: none;
  }

  .Performance-Calculation .align-items-center .purple-pattan {
    display: none;
  }

  .features .features-item {
    padding-top: 0;
  }

  .Seamless-Data-Integration {
    padding-top: 0;
  }

  .Seamless-Data-Integration .seamless {
    flex-direction: column-reverse;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 452px;
    bottom: 93px;
  }

  .fun-creation {
    padding-top: 0;
  }

  .fun-creation .features-section-bg-performance {
    height: 495px;
    bottom: 90px;
  }

  .fun-creation .blue-pattan.pattan-1 {
    display: none;
  }

  .fun-creation .blue-pattan.pattan-2 {
    display: none;
  }

  .fun-creation .purple-pattan.pattan-1 {
    display: none;
  }

  .features .features-item .seamless {
    padding-left: 0;
  }

  .features .features-item .advanced {
    padding-left: 0;
  }

  .advanced-reporting {
    padding-top: 0;
    padding-bottom: 0;
  }

  .advanced-reporting .advance {
    flex-direction: column-reverse;
  }

  .advanced-reporting .purple-pattan.pattan-1 {
    display: none;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 580px;
    bottom: 5px;
  }
  
}

@media (max-width: 991px) {
  .request .request-color-bg {
    width: 73%;
    height: 409px;
    left: 0;
    top: 90px;
  }
}


@media (max-width: 768px) {
  .hero .hero-content .hero-shape-circle1 {
    z-index: -1;
    display: none;
  }

  .hero .hero-content .hero-shape-circle3 {
    z-index: -1;
    display: none;
  }

  .hero .hero-content .precision {
    width: 95%;
  }

  .hero .hero-right-arrow {
    position: absolute;
    width: 15%;
    height: 15%;
    top: 40%;
    left: 85%;
  }

  .hero .hero-left-arrow {
    position: absolute;
    width: 15%;
    height: 15%;
    left: 0%;
    bottom: 45%;
  }

  /* .model-bt {
    margin-bottom: 0;
  } */

  .how-it-works .perf-cal-mb {
    margin-bottom: 78px;
  }

  .Performance-Calculation {
    padding-top: 0;
  }

  .rep-perf {
    padding: 0 0;
    flex-direction: column-reverse;
  }
  .container-margin-top{
    margin: 0 0 78px;
  }

  /* .Performance-Calculation .features-section-bg-performance {
    bottom: 90px;
    height: 480px;
  }

  .Performance-Calculation .blue-pattan {
    z-index: 1;
    opacity: 80%;
    display: none;
  }

  .Performance-Calculation .align-items-center .purple-pattan {
    display: none;
  }

  .features .features-item {
    padding-top: 0;
  }

  .Seamless-Data-Integration {
    padding-top: 0;
  }

  .Seamless-Data-Integration .seamless {
    flex-direction: column-reverse;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 452px;
    bottom: 93px;
  }

  .fun-creation {
    padding-top: 0;
  }

  .fun-creation .features-section-bg-performance {
    height: 495px;
    bottom: 90px;
  }

  .fun-creation .blue-pattan.pattan-1 {
    display: none;
  }

  .fun-creation .blue-pattan.pattan-2 {
    display: none;
  }

  .fun-creation .purple-pattan.pattan-1 {
    display: none;
  }

  .features .features-item .seamless {
    padding-left: 0;
  }

  .features .features-item .advanced {
    padding-left: 0;
  }

  .advanced-reporting {
    padding-top: 0;
    padding-bottom: 0;
  }

  .advanced-reporting .advance {
    flex-direction: column-reverse;
  }

  .advanced-reporting .purple-pattan.pattan-1 {
    display: none;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 580px;
    bottom: 5px;
  } */

  .use-case .use-case-arrow {
    display: none;
  }

  .use-case .use-case-dot1 {
    z-index: -1;
  }

  .use-case .use-case-star2 {
    display: none;
  }

  .faq .dot-pattern-b {
    display: none;
  }

  .faq .purple-star {
    display: none;
  }

  .footer .dot-pattern-b {
    display: none;
  }

  /* Request Demo */
  .request .request-color-bg {
    width: 73%;
    height: 409px;
    left: 0;
    top: 90px;
  }

  .request .arrow img {
    display: none;
  }

  .request .request-left .purple-star.star-2 {
    display: none;
  }

  /* Request Demo */
}

@media (max-width: 767px) {

  .Performance-Calculation .features-section-bg-performance {
    height: 38%;
    border-radius: 30px 0 0 30px;
  }

  .Performance-Calculation .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .Seamless-Data-Integration .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 45%;
    border-radius: 0 30px 30px 0;
  }

  .Seamless-Data-Integration .blue-pattan {
    display: none;
  }

  .advanced-reporting .blue-pattan.pattan-1 {
    display: none;
  }

  .fun-creation .features-section-bg-performance {
    height: 41%;
    border-radius: 30px 0 0 30px;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 49%;
    border-radius: 0 30px 30px 0;
  }

  .fun-creation .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .advanced-reporting .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .benefit-usecase-bg img {
    bottom: 110px;
  }

  .request .request-color-bg {
    width: 73%;
    height: 435px;
    left: 0;
    top: 90px;
  }
  .how-it-works .number-2{
    right: 0;
    left: unset;
  }

}

@media (max-width: 575px) {
  .Performance-Calculation .features-section-bg-performance {
    height: 40%;
    width: 100%;
    border-radius: 0;
  }

  .Performance-Calculation .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .Seamless-Data-Integration .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 46%;
    width: 100%;
    border-radius: 0;
  }

  .Seamless-Data-Integration .blue-pattan {
    display: none;
  }

  .advanced-reporting .blue-pattan.pattan-1 {
    display: none;
  }

  .fun-creation .features-section-bg-performance {
    height: 44%;
    width: 100%;
    border-radius: 0;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 50%;
    width: 100%;
    border-radius: 0;
  }

  .fun-creation .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .advanced-reporting .align-items-center .features-gradient-bg.performance {
    display: none;
  }
}

/* @media (max-width: 560px) {
  .Performance-Calculation .features-section-bg-performance {
    height: 40%;
    width: 100%;
    border-radius: 0;
  }

  .Performance-Calculation .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .Seamless-Data-Integration .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 46%;
    width: 100%;
    border-radius: 0;
  }

  .Seamless-Data-Integration .blue-pattan {
    display: none;
  }

  .advanced-reporting .blue-pattan.pattan-1 {
    display: none;
  }

  .fun-creation .features-section-bg-performance {
    height: 44%;
    width: 100%;
    border-radius: 0;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 50%;
    width: 100%;
    border-radius: 0;
  }

  .fun-creation .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .advanced-reporting .align-items-center .features-gradient-bg.performance {
    display: none;
  }
} */

@media (max-width: 425px) {

  .header .logo img {
    max-height: 30px;
  }

  .header .btn-getstarted {
    font-size: 13px;
  }

  .hero .hero-content .precision {
    width: 102%;
  }

  .hero .hero-content .Performance {
    font-size: 58px;
    line-height: 1.5;
  }

  .hero .hero-content .Calculation {
    font-size: 58px;
    line-height: 1.5;
  }

  .hero .hero-content .simplified {
    line-height: 1.5;
    width: 102%;
  }

  .hero .hero-left-arrow {
    position: absolute;
    width: 15%;
    height: 15%;
    left: 0%;
    bottom: 30%;
  }

  .hero .hero-right-arrow {
    position: absolute;
    width: 15%;
    height: 15%;
    top: 55%;
    left: 85%;
  }

  .process-shape-circle2 {
    z-index: -1;
  }

  .section-title {
    padding-bottom: 40px;
  }

  .rep-perf {
    padding: 0 0;
    flex-direction: column-reverse;
  }

  .hero .hero-content .hero-shape-circle3 {
    z-index: -1;
    opacity: 50%;
  }

  .how-it-works {
    padding-top: 0;
  }

  .how-it-works .number-2 {
    right: 0;
    left: unset;
  }

  .how-it-works .container-margin-top {
    margin-top: 0;
    margin-bottom: 60px;
  }

  .how-it-works .container-margin-bottom {
    margin-bottom: 70px;
  }

  .how-it-works .perf-cal-mb {
    margin-bottom: 70px;
  }

  .how-it-works .number-1 {
    left: 0;
  }

  .how-it-works .number-3 {
    left: 0;
  }

  .how-it-works .number-4 {
    left: -2px;
  }

  .how-it-works .number-5 {
    right: 0;
  }

  /* .features .perf-calculation{
    position: absolute;
  } */

  .Performance-Calculation .features-section-bg-performance {
    height: 29%;
    border-radius: 0;
  }

  .Performance-Calculation .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .Seamless-Data-Integration .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 36%;
    border-radius: 0;
  }

  .Seamless-Data-Integration .blue-pattan {
    display: none;
  }

  .advanced-reporting .blue-pattan.pattan-1 {
    display: none;
  }

  .fun-creation .features-section-bg-performance {
    height: 33%;
    border-radius: 0;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 42%;
    border-radius: 0;
  }

  .fun-creation .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .advanced-reporting .align-items-center .features-gradient-bg.performance {
    display: none;
  }

  .use-case .use-case-left-gradient {
    display: none;
  }

  .benefit-usecase-bg img {
    bottom: 120px;
  }

  /* Request Demo */
  .request .request-color-bg {
    width: 95%;
    height: 495px;
    left: 0;
    top: 90px;
  }

  /* Request Demo */

}

@media (max-width: 410px) {
  .Performance-Calculation .features-section-bg-performance {
    height: 27%;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 32%;
    bottom: 101px;
  }

  .fun-creation .features-section-bg-performance {
    height: 32%;
    bottom: 95px;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 36%;
    bottom: 18px;
  }
}

@media (max-width: 375px) {
  .hero .hero-content .precision {
    width: 103%;
  }

  .hero .hero-content .Performance {
    font-size: 50px;
    line-height: 1.5;
  }

  .hero .hero-content .Calculation {
    font-size: 50px;
  }

  .hero .hero-left-arrow {
    position: absolute;
    width: 15%;
    height: 15%;
    left: 0%;
    bottom: 25%;
  }

  .hero .hero-right-arrow {
    position: absolute;
    width: 15%;
    height: 15%;
    top: 60%;
    left: 85%;
  }

  .header .btn-getstarted {
    font-size: 12px;
  }

  .header .logo {
    width: 35%;
  }

  .header .logo img {
    max-height: 26px;
    margin-right: 8px;
  }

  .Performance-Calculation .features-section-bg-performance {
    height: 26%;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 30%;
    bottom: 101px;
  }

  .fun-creation .features-section-bg-performance {
    height: 30%;
    bottom: 95px;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 34%;
    bottom: 18px;
  }
}

@media (max-width: 362px) {
  .header .logo {
    width: 28%;
  }
}

@media (max-width: 320px) {
  .header .logo {
    width: 26%;
  }

  .header .logo img {
    max-height: 20px;
    margin-right: 24px;
  }

  /* Request Demo */
  .request .request-color-bg {
    width: 95%;
    height: 565px;
    left: 0;
    top: 90px;
  }

  .request .request-demo-img {
    max-width: 265px;
  }

  .use-case .use-case-star1{
    display: none ;
  }

  /* Request Demo */
}

@media (max-width: 370px) {
  .features .features-item-head {
    font-size: 28px;
  }

  .Performance-Calculation .features-section-bg-performance {
    height: 24%;
  }

  .fun-creation .features-section-bg-performance {
    height: 28%;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 30%;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 32%;
  }
}

@media (max-width: 320px) {

  .section-title h2 {
    font-size: 42px;
  }

  .hero .hero-content .precision {
    width: 100%;
  }

  .hero .hero-content .Performance {
    font-size: 42px;
  }

  .hero .hero-content .Calculation {
    font-size: 42px;
  }

  .hero .hero-content h1 {
    font-size: 34px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 0;
  }

  .hero .hero-content p {
    font-size: 16px;
  }

  .hero .hero-content p span {
    font-size: 16px;
  }

  .hero .hero-content .hero-shape-dot {
    top: 22%;
    left: 9%;
  }

  .hero .hero-left-arrow {
    bottom: 22%;
    width: 16%;
    height: 16%;
  }

  .hero .hero-right-arrow {
    top: 62%;
    width: 16%;
    height: 16%;
  }

  .features .features-item-head {
    font-size: 28px;
  }

  .Performance-Calculation .features-section-bg-performance {
    height: 22%;
  }

  .fun-creation .features-section-bg-performance {
    height: 26%;
  }

  .Seamless-Data-Integration .features-section-bg-performance {
    height: 28%;
  }

  .advanced-reporting .features-section-bg-performance {
    height: 28%;
  }

}

.mt-4-rem {
  margin-top: 4rem;
}