@font-face {
  font-family: "mynerve";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Mynerve-Regular.ttf");
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PlusJakartaSans-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Lato Regular";
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Lato-Regular.ttf");
}
* {
  box-sizing: border-box;
}

:root {
  --primary-color: #0081b6;
  --primary-light: #26a2dc;
  --primary-ligher: #dff4ff;
  --primary-dark: #07334a;
  --primary-light-border: #f0faff;
  --primary-purple: #515e8a;

  --secondary-color: #333333;
  --secondary-light: #808080;
  --secondary-bg: #474554;
  /* --secondary-ligher: #ededed; */

  /* --blue-ligher: #eceff8;
  --blue-lightest: #eef1f9; */
  --white: #ffffff;
  --shadow: #00000030;

  /* primary-gradient */
  --primary-gradient: linear-gradient(
    var(--primary-purple) 0%,
    var(--primary-color) 100%
  );
  --primary-gradient-rotate: linear-gradient(
    var(--primary-color) 0%,
    var(--primary-purple) 100%
  );
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
a,
.btn,
.text-large,
.text-medium,
.text-small,
li {
  font-family: "Lato Regular";
  color: var(--secondary-color);
}

h1,
.h1 {
  font-weight: 700;
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0;
}

h2,
.h2 {
  font-weight: 700;
  font-size: clamp(1.75rem, 1.65rem + 0.5vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0;
}

h3,
.h3 {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0;
}

h4,
.h4 {
  font-weight: 600;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0;
}

/* h5,
.h5 {
  font-weight: 600;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0;
}

h6,
.h6 {
  font-weight: 600;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0;
} */

.text-large {
  font-weight: 400;
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.text-medium {
  font-weight: 400;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  line-height: 20px;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.text-small {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 20px;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.text-tiny {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}
a {
  text-decoration: none;
  color: var(--secondary-color);
  cursor: pointer;
  &:hover {
    color: var(--primary-color);
  }
}

.btn-primary {
  position: relative;
  font-size: clamp(0.75rem, 0.7125rem + 0.1875vw, 0.9375rem);
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0;
  padding: 10px 16px;
  border-radius: 4px;
  color: var(--white);
  border: 1px solid var(--primary-light) !important;
  display: inline-block;
  width: max-content;
  background: var(--primary-light);

  &:hover,
  &:active,
  &:focus {
    background: var(--white) !important;
    color: var(--primary-light) !important;
  }

  &.btn-arrow {
    padding-right: 40px;

    &::after {
      position: absolute;
      content: "\f178";
      font-family: "Font Awesome 6 Free";
      font-weight: 600;
      font-size: 18px;
      height: 18px;
      width: 18px;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}

.btn-secondary {
  position: relative;
  font-size: clamp(0.75rem, 0.7125rem + 0.1875vw, 0.9375rem);
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 0;
  padding: 10px 16px;
  border-radius: 4px;
  color: var(--white);
  border: 1px solid var(--white);
  display: inline-block;
  width: max-content;

  &:hover,
  &:active,
  &:focus {
    background: var(--white);
    color: var(--secondary-color);
  }

  &.btn-arrow {
    padding-right: 40px;

    &::after {
      position: absolute;
      content: "\f178";
      font-family: "Font Awesome 6 Free";
      font-weight: 600;
      font-size: 18px;
      height: 18px;
      width: 18px;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}
.section-title {
  text-align: center;
  padding-bottom: 40px;
}
section {
  padding: 50px 0;
}

/* navigation */
.fixed-top {
  .navigation {
    border: 1px solid var(--secondary-ligher);
    padding: 10px 20px;
    background-color: var(--white);
    box-shadow: 0 5px 5px -2px var(--shadow);
    .menubar-gap {
      gap: 80px;
      .menuItem {
        gap: 20px;
      }
    }
  }
}

.menuItem > li {
  padding: 0 8px;
  font-size: 15px;
  color: var(--secondary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  position: static;
  transition: color 0.3s cubic-bezier(0.5, 0, 0.5, 1);
}
.menuItem > li a {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
}
.menuItem li span::after,
.topmenulink::after,
.menuItem .dropdown-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: -2px;
  right: 0;
  background: var(--primary-color);
  transition: width 0.2s;
  -webkit-transition: width 0.2s ease;
}
.menuItem .dropdown-menu .dropdowncenter li a:hover::after,
.topmenulink:hover::after,
.menuItem li:hover span::after,
.menuItem .dropdown-menu .subMenuGroupList li a:hover::after {
  width: 100%;
  left: 0;
  background: var(--primary-color);
}
.dropdown .dropdown-menu {
  position: absolute !important;
  padding: 0 !important;
  top: 70px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: none !important;
  width: 100%;
  max-width: 800px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.menuItem .dropdown-menu li a {
  position: relative;
  font-size: 14px;
  color: var(--secondary-color);
  line-height: 25px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdownSection.dropdownRight a .solutionPlaystore img {
  max-width: 50%;
  height: auto;
  padding-top: 1rem;
  display: flex;
  margin: 0 auto;
}
.dropdownLeft::before {
  content: "";
  height: 100%;
  width: 33.33333333%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-dark);
  z-index: -1;
}
.subMenudropdownRow .dropdowncenter {
  padding: 2rem 20px;
}
.dropdownLeft.subMenudropdown .subMenu {
  max-width: 1340px;
  transform: translate3d(0, 0%, 0);
  overflow: visible;
  padding: 20px 0;
  transition: none;
}
.dropdownLeft.subMenudropdown .subMenu .solutionImage {
  max-width: 250px;
  margin-left: 25px;
}
.dropdownLeft.subMenudropdown .subMenu .nav-macro-menulist {
  max-width: 26.39%;
  margin: 0 0;
  padding: 0 0 0 10px;
  width: 100%;
}
.dropdownLeft.subMenudropdown
  .subMenu
  .nav-macro-menulist.active
  .nav-macro-name.active {
  border-radius: 6px 0 0 6px;
  background: #fff;
  color: var(--secondary-color);
}
.dropdownLeft.subMenudropdown .subMenu .nav-macro-menulist .nav-macro-name a {
  pointer-events: auto;
  display: inline-block;
  width: 100%;
  color: var(--white);
  font-size: 14px;
  padding: 10px 25px;
  text-transform: uppercase;
  transition: opacity 200ms ease-out 150ms;
  font-weight: 500;
}
.dropdownLeft.subMenudropdown .subMenu .nav-macro-menulist .nav-micro-menu {
  display: none;
  height: 100%;
  overflow-y: auto;
  position: absolute;
  left: 25%;
  max-width: 100%;
  top: 0;
  min-width: 620px;
  background: var(--white);
  transition: none;
  padding-top: 15px;
  padding-left: 15px;
  width: 75%;
}
.dropdownLeft.subMenudropdown
  .subMenu
  .nav-macro-menulist.active
  .nav-micro-menu.active {
  display: flex;
}
.dropdownLeft.subMenudropdown
  .subMenu
  .nav-macro-menulist.active
  .nav-micro-menu
  .subMenuGroupList {
  white-space: normal;
}
.dropdownLeft.subMenudropdown .subMenu li {
  color: var(--secondary-color);
  width: max-content;
}
.dropdownLeft.subMenudropdown .subMenu li i {
  padding-right: 8px;
  font-size: 16px;
}
.dropdownLeft.subMenudropdown
  .subMenu
  .nav-macro-menulist.active
  .nav-macro-name.active
  a,
.dropdownLeft.subMenudropdown .subMenu li:hover,
.topmenulink:hover,
.menuItem .dropdown-menu .dropdowncenter li a:hover,
.menuItem > li:hover span,
.nav-micro-menu .subMenuGroupList li a:hover {
  color: var(--primary-color);
}
.dropdownLeft.subMenudropdown .subMenu .nav-macro-menulist.active {
  background: #fff0;
}
#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(40 58 90 / 0.9);
}
.headerbar {
  background-color: var(--white);
  padding: 30px 70px;
  box-shadow: 0 0 5px 1px var(--shadow);
}
.navbarContainer {
  padding: 5px 0px;
}
.logo-nav {
  height: 45px;
}
.sidebar-navigation {
  position: absolute;
  width: 100%;
  left: -100%;
  top: 55px;
  height: 100vh;
  background-color: var(--white);
  transition: all 0.2s ease-in-out;
  overflow: auto;
}
.sidebar-navigation.active {
  left: 0;
  transition: all 0.2s ease-in-out;
  padding: 0px;
}
.sidebar-navigation ul {
  border-top: 1px solid var(--secondary-ligher);
  border-bottom: 1px solid var(--secondary-ligher);
  padding: 39px 16px 0px;
}
.sidebar-navigation > ul > li > a {
  text-transform: unset;
}
.sidebar-navigation ul li {
  display: block;
}
.sidebar-navigation ul li a {
  position: relative;
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: var(--secondary-color);
  letter-spacing: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-bottom: 24px;
}
.sidebar-navigation ul li a em {
  font-size: 14px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  border-radius: 50%;
}
.mobile-menu {
  display: flex;
  align-items: center;
  a {
    padding: 0px;
    width: 24px;
    height: 24px;
  }
}
.sidebar-navigation ul li:hover > a,
.sidebar-navigation ul li.selected > a {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: rgb(255 255 255 / 0.1);
}
.sidebar-navigation ul li ul {
  display: none;
}
.sidebar-navigation ul li ul.open {
  display: block;
}
.sidebar-navigation ul li ul li a {
  color: var(--secondary-color);
  border-color: rgb(255 255 255 / 0.1);
}
.sidebar-navigation ul li ul li:hover > a,
.sidebar-navigation ul li ul li.selected > a {
  background-color: var(--white);
}
.sidebar-navigation ul li ul li:hover > a:before,
.sidebar-navigation ul li ul li.selected > a:before {
  margin-right: 10px;
}
.sidebar-navigation ul li ul li.selected.selected--last > a {
  background-color: var(--primary-color);
  color: var(--white);
}
.sidebar-navigation ul li ul li.selected.selected--last > a:before {
  background-color: var(--white);
}
.subMenuColor1,
.subMenuColor2 {
  background-color: var(--primary-bg-light);
}
.mobile-menu .btn:focus,
.mobile-menu .btn:active {
  outline: none !important;
  border: none;
}
a.btn.close .fa-bars::before {
  content: "\f00d";
}
@media (min-width: 1366px) and (max-width: 1400px) {
  .menuItem > li {
    font-size: 14px;
    padding: 0 6px;
  }
  .header-stripe .hline {
    background-image: url(../images/Independence-strip2024.webp) !important;
    background-size: cover !important;
    width: 100%;
    background-color: #fff;
    background-position: center;
    font-size: 13px;
    line-height: 2;
  }
  .logo-nav {
    height: 38px;
  }
}

@media (max-width: 1024px) {
  .logo-nav {
    height: 40px;
  }
  .menuItem > li {
    padding: 0 6px;
    height: 60px;
    font-size: 12px;
  }
  .dropdown .dropdown-menu {
    top: 60px !important;
  }
  .sidebar-navigation {
    top: 63px;
  }
}
@media (max-width: 991px) {
  .menuItem,
  .menu-cta {
    display: none !important;
  }
  .navbarContainer {
    padding: 10px 0px;
  }
  section {
    padding: 40px 0;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .header-lp {
    .menuItem > li {
      padding: 0 6px;
      height: 60px;
      font-size: 12px;
    }
  }
}
@media (max-width: 1199px) and (min-width: 1000px) {
  .menuItem > li {
    padding: 0 6px;
    height: 60px;
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .fixed-top {
    top: 0px;
    background-color: var(--white);
    .navigation {
      border: none;
      box-shadow: none;
      padding: 10px 0px;
    }
  }
}
@media (max-width: 767px) {
  #header {
    .logo-nav {
      width: 100px;
      height: auto;
    }
  }
  section {
    padding: 20px 0;
  }
  .sidebar-navigation {
    top: 60px;
  }
}
@media (max-width: 420px) {
  .logo-nav {
    height: 30px;
  }
  .revampNavbar {
    .navbarContainer {
      .btn-primary {
        padding: 10px;
        font-size: 12px;
      }
    }
  }
  .sidebar-navigation {
    top: 54px;
  }
}

/* cookie */

#cookie {
  position: fixed;
  bottom: 15px;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
  .position-relative {
    background-color: var(--primary-color);
  }
}
#cookies-btn {
  position: absolute;
  right: -7px;
  top: -7px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  height: 21px;
  width: 21px;
  text-align: center;
  border: 2px solid var(--white);
  line-height: 17px;
  align-content: center;
}
#cookies-btn i {
  font-size: 13px;
}
@media (min-width: 1600px) {
  #cookies-btn {
    position: absolute;
    right: -7px;
    top: -9px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    height: 25px;
    width: 25px;
    text-align: center;
    border: 2px solid var(--white);
    line-height: 17px;
  }
}
@media (max-width: 992px) {
  #cookie {
    left: 11%;
    width: 78%;
    transform: translateX(0%);
  }
}
@media (max-width: 767px) {
  #cookie {
    left: 3%;
    width: 94%;
    transform: translateX(0%);
  }
}

.hero-section-main {
  padding-top: 140px;
  --animate-delay: 0.5s;
  background-color: #f0f3ff;
  position: relative;
  overflow: hidden;
  .hero-image-wrapper {
    position: relative;
    margin-top: 90px;
    z-index: 3;
    img {
      &:first-child {
        filter: none;
      }
      filter: drop-shadow(-5px 5px 5px var(--shadow));
    }
    .hero-popup1 {
      position: absolute;
      left: -75px;
      top: 12%;
    }
    .hero-popup2 {
      position: absolute;
      right: -100px;
      bottom: 5%;
    }
    .hero-popup3 {
      position: absolute;
      right: 100px;
      top: -20%;
    }
  }
  &::after {
    position: absolute;
    content: "";
    height: 550px;
    width: 550px;
    background-image: radial-gradient(circle, #c4eeff, transparent 75%);
    left: 0px;
    bottom: 20px;
  }
  &::before {
    position: absolute;
    content: "";
    height: 550px;
    width: 550px;
    background-image: radial-gradient(circle, #c4eeff, transparent 75%);
    right: 0px;
    bottom: -20px;
    z-index: 2;
  }
  .section-title {
    position: relative;
    z-index: 2;
  }
  .hero-banner-bg {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 0;
  }
}

.animation-carousal-main {
  .animation-carousal {
    --animate-delay: 0.5s;
    padding-bottom: 70px;
    .slider-wrapper {
      display: flex;
      gap: 25px;
      .slider-left,
      .slider-right {
        text-align: center;
        background: linear-gradient(var(--white), #faf7ff);
        width: 50%;
        border-radius: 10px;
        padding: 0px 60px 0px;
        .lable {
          background-color: var(--primary-ligher);
          padding: 5px 35px;
          border-radius: 32px;
          width: max-content;
          margin: 20px auto 40px;
        }
      }
      .slider-right {
        .image-wrapper {
          position: relative;
          bottom: -10px;
          left: 0px;
          text-align: left;
          img {
            width: 80%;
          }
          .image-lable {
            position: absolute;
            background-color: #e0f9d3;
            color: #256105;
            font-weight: 400;
            padding: 10px 20px;
            border-radius: 5px;
            box-shadow: 0px 5px 5px var(--shadow);
            &:nth-child(2) {
              left: -20px;
              bottom: 30%;
            }
            &:nth-child(3) {
              right: -10px;
              top: -4%;
            }
            &:nth-child(4) {
              right: -40px;
              bottom: 3%;
            }
          }
        }
      }
    }
    .swiper-slide {
      overflow: hidden;
    }
  }
}

/* swiper slide */
.swiper-button-next,
.swiper-button-prev {
  background-color: var(--secondary-color);
  color: var(--white);
  height: 36px;
  width: 36px;
  border-radius: 25px;
  bottom: 5px;
  top: auto;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  font-size: 24px;
}
.swiper-button-prev {
  left: 46.5%;
  transform: rotate(180deg);
}
.swiper-button-next {
  left: 50.5%;
}

/*  client section */
.client-section-main {
  .client-section-wrapper {
    text-align: center;
    .client-logos {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      .logo-wrapper {
        max-width: 110px;
      }
    }
  }
}

/* config image */
.config-image-main {
  background: linear-gradient(
    var(--primary-color) 80%,
    var(--primary-purple) 110%
  );
  .text-wrapper {
    h2,
    p {
      color: var(--white);
    }
  }
}

.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 0.8);
  opacity: 0;
  transition: all ease 500ms;
  width: 100%;
}
.video-overlay.open {
  position: fixed;
  z-index: 9999;
  opacity: 1;
}
.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}
.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 15px rgb(0 0 0 / 0.75);
}
@media (max-width: 991px) {
  .video-overlay iframe {
    width: 80% !important;
    height: 33% !important;
  }
}
@media (max-width: 767px) {
  .video-overlay iframe {
    height: 22% !important;
  }
}
/* footer */
#footer {
  background: var(--secondary-color);
  padding: 50px 0px;
  overflow: hidden;
  position: relative;
  color: var(--white);
  background-image: url(../images/footer-bg.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;

  .container {
    position: relative;
    z-index: 2;
  }
  .h4 {
    color: var(--white);
    font-weight: 700;
    margin: 0px;
  }
}
.footer-top {
  position: relative;

  .text-wrapper {
    text-align: center;
    h2,
    .h4 {
      color: var(--white);
    }
    p {
      margin-bottom: 40px;
    }
    .h4 {
      margin-bottom: 4px;
    }
  }
  .image-wrapper {
    text-align: center;
  }
}
.footer-shape {
  .col-lg-9:has(.footer-menubar) {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .store-images {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}

.footer-top .footer-links {
  margin-bottom: 30px;
}
.footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-dark);
  font-size: 10px;
  line-height: 1;
  margin-right: 5px;
}
.footer-top .footer-links ul .h5 {
  margin-bottom: 15px;
}
.footer-top .footer-links ul li {
  display: flex;
  align-items: center;
  .text-large {
    line-height: 1.3;
  }
}
.footer-top .footer-links ul a,
footer p {
  margin: 0px;
  color: var(--white) !important;
}

footer .title {
  border-bottom: 1px solid var(--secondary-light);
  margin-bottom: 16px;
  .text-small {
    font-weight: 700;
    margin-bottom: 13px;
  }
}
.footer-top .footer-links ul a:hover {
  color: var(--white);
}
.footer-top .social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-top .social-links a {
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  line-height: 1;
  padding: 6px 0;
  border-radius: 50px;
  text-align: center;
  width: 25px;
  height: 25px;
  transition: 0.3s;
}
.footer-top .social-links a:hover {
  background: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
}
.footer-top .social-links a:hover svg {
  fill: #fff !important;
}
.footer-bottom {
  padding-top: 21px;
  border-top: 1px solid var(--secondary-light);
  .copyright,
  a {
    color: #d0daf5;
  }
}
.border-right {
  border-right: 1px solid var(--secondary-color);
}

.play-store {
  display: flex;
  gap: 20px;
}
.footer-menubar .position-absolute {
  bottom: 10%;
  left: 30%;
}
.footer-contact {
  img {
    max-width: 180px;
  }
}
.email {
  margin-bottom: 16px;
  a {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--white);
  }
}
.certificate img {
  height: 70px;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 18px;
  color: var(--white);
  line-height: 0;
}
.back-to-top:hover {
  background: var(--primary-color);
  color: var(--white);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767px) {
  #footer {
    background: linear-gradient(
      to right,
      var(--secondary-color) 0%,
      var(--secondary-bg) 100%
    );
    padding: 48px 0px;
  }
  .footer-shape {
    .col-lg-9:has(.footer-menubar) {
      gap: 16px;
    }
  }
  .footer-top .footer-links ul {
    gap: 4px;
  }
  .footer-top .footer-links {
    margin: 0px;
  }
  .footer-menubar {
    .row {
      gap: 20px 0px;
    }
  }
  .row:has(.store-images) {
    gap: 16px;
  }
  .email {
    margin: 0px;
  }
  .footer-top .social-links {
    margin: 0px;
  }
  .footer-bottom {
    padding-top: 16px;
    .row {
      gap: 4px 0px;
    }
  }
}
.solutions-tab-main {
  --animate-delay: 0.5s;
  #buildBusinessTab {
    border: none;
    padding: 10px 0px;
    flex-wrap: nowrap;
    overflow: auto;
    &.nav-tabs {
      justify-content: space-evenly;
      .nav-item {
        min-width: 100px;
        max-width: 150px;
      }
      .nav-link {
        padding: 5px 15px;
        border-radius: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 12px;
        border: none;
        --bs-bg-opacity: 1;
        margin: 0 auto;
        color: var(--secondary-color);

        .icon {
          height: 48px;
          width: 48px;
          background-color: var(--white);
          border-radius: 35px;
          display: flex;
          align-items: center;
          background-color: var(--primary-ligher);
          justify-content: center;
          transition: all 0.3s ease-in-out;
        }
        &:hover,
        &.active,
        &:focus {
          .icon {
            height: 64px;
            width: 64px;
            background-color: var(--white);
            border: 1px solid var(--primary-color);
            box-shadow: 0px 0px 5px var(--shadow);
          }
        }
      }
    }
  }
  .tab-content,
  .accordion-body {
    a {
      display: inline-block;
      color: var(--primary-color);
      border-bottom: 1px solid var(--primary-color);
      transition: all 0.5s ease-in-out;
      i {
        margin-left: 5px;
        font-size: 12px;
        transition: all 0.5s ease-in-out;
      }
      &:hover {
        color: var(--primary-light);
        border-color: var(--primary-light);
        i {
          margin-left: 10px;
        }
      }
    }
  }
  .accordion-item {
    border: 1px solid var(--primary-color) !important;
    border-radius: 8px;
    padding: 8px;
    .accordion-button {
      padding: 0px;
      gap: 16px;
      .icon {
        height: 38px;
        width: 38px;
        background-color: var(--white);
        border-radius: 35px;
        display: flex;
        align-items: center;
        background-color: var(--primary-ligher);
        justify-content: center;
        transition: all 0.3s ease-in-out;
        img {
          width: 25px;
        }
      }
      &:hover,
      &.active,
      &:focus {
        .icon {
          background-color: var(--white);
          border: 1px solid var(--primary-color);
          box-shadow: 0px 0px 5px var(--shadow);
        }
      }
    }
    .accordion-body {
      padding: 0px;
      padding-top: 16px;
    }
  }
  .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: transparent;
    box-shadow: none;
  }
  .accordion-button:focus {
    border: none;
    box-shadow: none;
  }
  .accordion-button::after {
    display: none;
  }
  .accordion {
    .image-wrapper {
      margin-top: 30px;
    }
  }
  .tab-content {
    margin-top: 40px;
    .text-wrapper {
      overflow: hidden;
    }
    .image-wrapper {
      position: relative;
      .main-image {
        margin: 50px 20px 0px;
      }
      .delay-1,
      .delay-2,
      .delay-3 {
        position: absolute;
        filter: drop-shadow(0px 2px 5px var(--shadow));
      }
      .delay-1 {
        bottom: 18%;
        left: 0%;
      }
      .delay-2 {
        top: 2%;
        left: 8%;
      }
      .delay-3 {
        top: 13%;
        right: 2%;
      }
    }
    #inventory {
      .image-wrapper {
        .delay-1 {
          bottom: 7%;
          left: -3%;
        }
        .delay-2 {
          top: 0%;
          left: 4%;
        }
        .delay-3 {
          top: 8%;
          right: -6%;
        }
      }
    }
    #crm {
      .image-wrapper {
        .delay-1 {
          bottom: 28%;
          left: 7%;
        }
        .delay-2 {
          top: 5%;
          left: 22%;
        }
        .delay-3 {
          top: 25%;
          right: -5%;
        }
      }
    }
    #warehouse {
      .image-wrapper {
        .delay-1 {
          bottom: 25%;
          left: -10%;
        }
        .delay-2 {
          top: 25%;
          right: -8%;
          left: auto;
        }
      }
    }
    #accounting {
      .image-wrapper {
        .delay-1 {
          bottom: 27%;
          left: 1%;
        }
        .delay-2 {
          top: 33%;
          right: 0%;
          left: auto;
        }
      }
    }
    #order {
      .image-wrapper {
        .delay-1 {
          bottom: 40%;
          left: -7%;
        }
        .delay-2 {
          bottom: 21%;
          right: -5%;
          left: auto;
          top: auto;
        }
      }
    }
  }
  position: relative;
  /* &::before {
    content: "";
    position: absolute;
    left: 0px;
    height: 30%;
    width: 10%;
    bottom: 16%;
    background: linear-gradient(var(--white) 60%, var(--primary-light-border));
    z-index: -1;
  } */
  &::after {
    content: "";
    position: absolute;
    right: 0px;
    height: 30%;
    width: 100%;
    bottom: 14%;
    background: linear-gradient(var(--white) 60%, var(--primary-light-border));
    z-index: -1;
  }
}

/* plan cta */
.plan-cta-main {
  position: relative;
  z-index: 2;
  .cta-wrapper {
    background: linear-gradient(
      to right,
      var(--secondary-color) 0%,
      var(--secondary-bg) 100%
    );
    padding: 33px 59px;
    border-radius: 20px;
    h2,
    p {
      color: var(--white);
    }
    .cta {
      display: flex;
      gap: 20px;
    }
  }
}

/* client storis */
.client-storis-main {
  .swiper-wrapper {
    padding-bottom: 80px;
    .swiper-slide {
      border-radius: 7px;
      position: relative;
      overflow: hidden;
      .video-play-button {
        position: absolute;
        color: var(--white);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        i::before {
          font-size: 75px;
        }
      }
      .text-wrapper {
        position: absolute;
        bottom: 35px;
        left: 20px;
        z-index: 1;
        h3 {
          color: var(--white);
          margin: 0px;
          font-size: 20px;
        }
      }
      &::after {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        left: 0px;
        bottom: -10px;
        background: linear-gradient(transparent 40%, var(--primary-dark) 100%);
        filter: blur(10px);
      }
    }
  }
}

/* box with image */
.box-with-image-main {
  background: linear-gradient(#eceff8 0%, transparent 100%);
  .cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;

    .cards {
      border: 1px solid var(--primary-ligher);
      border-radius: 14px;
      padding: 25px;
      background-color: var(--white);
      transition: all 0.3s ease-in-out;
      &.disable {
        background: rgba(255, 255, 255, 0.443);
        &:hover {
          box-shadow: none;
          .title img {
            filter: brightness(0);
          }
        }
      }
      .title {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
        h3 {
          margin: 0px;
          align-content: center;
        }
        img {
          filter: brightness(0);
          transition: all 0.3s ease-in-out;
        }
      }
      a {
        border-bottom: 1px solid rgba(51, 51, 51, 0.25);
        padding: 0px 10px 2px 0px;
      }
      &:hover {
        box-shadow: 0px 0px 20px var(--shadow);
        .title {
          img {
            filter: none;
          }
        }
      }
    }
  }
}

/* integration */
.integration-main {
  .integration-wrapper {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    position: relative;
    overflow: hidden;
  }

  .scaler {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
  }

  /* integration-card Styling */
  .integration-card {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.2;
    filter: grayscale(100%);
    padding: 2px;
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid var(--secondary-light);
    border-radius: 15px;
    background-color: var(--white);
  }

  .integration-card img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
  }

  .integration-card:hover {
    opacity: 0.6;
    transform: scale(1.05);
    filter: grayscale(0%);
    img {
      opacity: 1;
    }
  }

  .integration-card.active {
    opacity: 1;
    filter: grayscale(0%);
    box-shadow: 0px 10px 15px -10px var(--shadow);
    transform: translateY(-8px) scale(1.05);
    border: none;
    img {
      opacity: 1;
    }
  }

  /* SVG Flow Lines */
  svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 1000px;
    height: 750px;
    pointer-events: none;
  }

  .flow-line {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    stroke: url(#lineGradient);
    opacity: 0;
  }

  /* Grid & integration-card Placements (Matching Screenshots) */
  #magento {
    top: 480px;
    left: 240px;
  }
  #shopify {
    top: 310px;
    left: 440px;
  }
  #woo {
    top: 640px;
    left: 560px;
  }
  #stripe {
    top: 350px;
    left: 140px;
  }
  #paypal {
    top: 610px;
    left: 780px;
  }
  #parcelhub {
    top: 170px;
    left: 340px;
  }
  #fedex {
    top: 370px;
    left: 630px;
  }
  #mailchimp {
    top: 630px;
    left: 180px;
  }
  #twilio {
    top: 210px;
    left: 650px;
  }
  #sap {
    top: 150px;
    left: 160px;
  }
  #hubspot {
    top: 660px;
    left: 395px;
  }
  #zoho {
    top: 460px;
    left: 475px;
  }

  .g1 {
    top: 200px;
    left: 200px;
  }
  .g2 {
    top: 160px;
    left: 370px;
  }
  .g3 {
    top: 150px;
    left: 570px;
  }
  .g4 {
    top: 350px;
    left: 160px;
  }
  .g5 {
    top: 460px;
    left: 460px;
  }
  .g6 {
    top: 350px;
    left: 640px;
  }
}

/* business type */
.business-type-main {
  position: relative;
  &::before {
    position: absolute;
    content: "";
    background-image: url(../images/vector-5.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0px;
    bottom: -30%;
    height: 100%;
    width: 100%;
  }
  &::after {
    position: absolute;
    content: "";
    background-image: url(../images/line-1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0px;
    top: 14%;
    height: 100%;
    width: 100%;
  }
  .business-Swiper {
    padding-bottom: 60px;
    .swiper-slide {
      position: relative;
      a {
        position: absolute;
        top: 0px;
        left: 0px;
        z-index: 1;
        height: 100%;
        width: 100%;
        align-content: end;
        .title {
          text-transform: uppercase;
          color: var(--white);
          margin: 0px;
          padding: 0px 0px 20px 30px;
        }
        &::after {
          position: absolute;
          content: "";
          height: 100%;
          width: 100%;
          left: 0px;
          top: 0px;
          background: linear-gradient(
            transparent 70%,
            var(--primary-color) 100%
          );
          border-radius: 24px;
          border: 4px solid white;
          z-index: -1;
        }
        &:hover {
          transition: all 0.5s ease-in-out;
          &::after {
            background: linear-gradient(
              transparent 40%,
              var(--primary-color) 100%
            );
          }
        }
      }
    }
  }
}

/* popup */
.modal-content {
  background: transparent;
}
.modal-body {
  /* The Gradient */
  overflow: hidden;
  &::after {
    content: "";
    position: absolute;
    right: -20%;
    top: 0px;
    background: radial-gradient(
      circle at 70% 50%,
      var(--primary-light) 20%,
      var(--primary-ligher) 80%,
      var(--white) 100%
    );
    height: 100%;
    width: 120%;
    z-index: -1;
  }
  /* .lable {
    color: var(--primary-color);
    border-radius: 25px;
    border: 0.5px solid var(--primary-color);
    padding: 10px;
    padding-left: 30px;
    font-weight: 700;
    font-size: 12px;
    width: max-content;
    margin-bottom: 16px;
    position: relative;
    &::before {
      content: "";
      position: absolute;
      width: 12px;
      height: 10px;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      background-image: url(../images/sparkle.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
    }
  } */
  .live-changes {
    h3 {
      span {
        color: var(--primary-color);
      }
    }
  }
  .new-form-ui {
    border-radius: 25px;
    padding: 16px 24px;
    border: 1px solid var(--primary-light-border);
    background: rgba(255, 255, 255, 0.15);
    .h3 {
      color: var(--white);
    }
    h5,
    h6 {
      text-align: left;
    }
    .form-control {
      background: transparent;
      border-radius: 50px;
      border: 1px solid var(--primary-light-border);
      padding: 10px 20px;
      &::placeholder {
        color: var(--white);
      }
      &:focus {
        box-shadow: none;
      }
    }
    .popup-form {
      border-radius: 25px;
      padding: 37px 4px;
      background: rgba(255, 255, 255, 0.25);
      border: 1px solid var(--primary-light-border);
    }
    .iti--separate-dial-code .iti__selected-flag {
      background: transparent;
      color: var(--white);
    }
    .btn-primary {
      width: 100%;
    }
    .acceptterms p {
      color: var(--white);
    }
    .fa-pull-left {
      margin-top: 5px;
    }
    .form-group {
      margin-bottom: 16px;
      /* &:nth-child(3) {
        color: var(--white);
      }
      .acceptterms {
        p {
          color: var(--white);
        }
      } */
      .col-4.ps-0 {
        .btn-secondary {
          padding: 13px 10px;
        }
      }
      .iti.iti--show-flags {
        width: 100%;
      }
    }
  }
  .iti__flag-box,
  .iti__country-name,
  .iti__dial-code {
    color: var(--black);
  }
}
button.close {
  position: absolute;
  right: -13px;
  top: -13px;
  padding: 5px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  text-align: center;
  opacity: 1;
  z-index: 99;
  border: none;
  line-height: 10px;
}
@media (max-width: 991px) {
  .modal-body {
    .lable {
      margin: 0px auto 20px;
    }
    h3 {
      margin: 0px;
    }
    .new-form-ui {
      border: none;
      box-shadow: none;
    }
  }
}
@media (max-width: 767px) {
  .modal-body {
    &::after {
      background: radial-gradient(
        circle at 40% 80%,
        var(--primary-light) 20%,
        var(--primary-ligher) 80%,
        var(--white) 100%
      );
    }
  }
  #scheduleademo {
    .modal-content {
      .modal-body {
        h4 {
          margin-bottom: 20px !important;
          &:after {
            height: 60px;
            width: 50px;
          }
        }

        .careersectioncard {
          .form-control {
            border-radius: 25px;
            padding: 5px 10px;
            font-size: 14px;
          }

          .btn-brand {
            padding: 10px 10px;
            border-radius: 50px;
          }
        }
      }
    }
  }
  #pricingform,
  #scheduleademo,
  #brochureform {
    .modal-body {
      padding: 10px 10px 15px !important;
    }
  }
  .modal-dialog {
    padding: 10px;
  }
  .modal-body {
    .new-form-ui {
      .popup-form {
        padding: 16px 8px;
      }
      .form-group {
        padding: 0px;
      }
      .form-control {
        border-radius: 12px;
        padding: 8px 16px;
      }
    }
  }
}
@media (max-width: 400px) {
  .modal-body {
    .new-form-ui {
      .form-group {
        .col-4.ps-0 {
          .btn-secondary {
            font-size: 12px;
          }
        }
      }
    }
  }
}

/* thank you */
.thanks-for-schedule-main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  &::after {
    content: "";
    position: absolute;
    right: 0%;
    top: 0px;
    background: url(../images/thank-you-page-1.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    z-index: -1;
  }
  .section-title {
    padding: 32px 0px 16px;
    h1 {
      margin-bottom: 16px;
    }
  }
  .cta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
  }
  iframe.player2 {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    border: 4px solid var(--primary-color);
  }
}
@media (max-width: 991px) and (max-height: 670px) {
  .thanks-for-schedule-main {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .client-section-main {
    .client-section-wrapper {
      .client-logos {
        .logo-wrapper {
          max-width: 70px;
        }
      }
    }
  }
  .thanks-for-schedule-main {
    align-items: unset;
    .gif img {
      width: 60px;
    }
    .section-title {
      padding-top: 24px;
    }
    &::after {
      background: url(../images/thank-you-page-2.webp);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 100%;
    }
    .image-wrapper {
      margin-top: 24px;
    }
    iframe.player2 {
      height: 200px;
      margin-top: 24px;
    }
  }
}
/* coming soon page */
/* .coming-soon-main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 10px 0px;
  .wrapper {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    .logo {
      max-width: 270px;
      img {
        width: 100%;
      }
    }
    .title {
      text-align: center;
      h1 {
        font-size: 120px;
        font-weight: 500;
        font-family: "Plus Jakarta Sans";
        margin: 12px 0px 15px;
        position: relative;
        color: #000000;
        span {
          font-size: 44px;
          font-weight: 400;
          font-family: "mynerve";
          position: absolute;
          bottom: -20px;
          right: -3%;
        }
        &::before {
          content: "";
          position: absolute;
          height: 35px;
          width: 35px;
          background-image: url("../images/eye.png");
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
          right: 21%;
          top: 50%;
        }
        &::after {
          content: "";
          position: absolute;
          height: 35px;
          width: 35px;
          background-image: url("../images/eye.png");
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
          right: 13%;
          top: 50%;
        }
      }
      p {
        font-size: 25px;
        font-weight: 400;
        font-family: "Plus Jakarta Sans", sans-serif;
        color: #3f454c;
        margin: 15px 0px 30px;
      }
    }
    form {
      width: 60%;
      .email {
        padding: 15px 50px 15px 30px;
        border: 0px;
        border-radius: 30px;
        box-shadow: 0px 5px 2px -2px #00000030;
        margin-right: 22px;
        width: 60%;
        font-size: 18px;
        font-weight: 400;
      }
      button {
        background-color: #41464a;
        color: #ffffff;
        padding: 15px 50px;
        font-size: 16px;
        font-weight: 500;
        border: 0px;
        border-radius: 40px;
        box-shadow: 0px 5px 2px -2px #00000030;
        cursor: pointer;
        transition: all 0.5s;
        &:hover {
          background-color: #000000;
        }
      }
    }
  }
}
.fix-image {
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: -1;
}
.image-mobile {
  display: none;
} */

@media (min-width: 2000px) {
  .hero-section-main {
    .hero-banner-bg,
    &::before,
    &::after {
      display: none;
    }
  }
}

@media (max-width: 1400px) {
  .solutions-tab-main {
    .tab-content {
      #pos {
        .image-wrapper {
          .delay-1,
          .delay-2 {
            width: 30%;
          }
        }
      }
      #warehouse {
        .image-wrapper {
          .delay-1,
          .delay-2 {
            width: 35%;
          }
          .delay-1 {
            left: 0%;
          }
        }
      }
      #order {
        .image-wrapper {
          .delay-1,
          .delay-2 {
            width: 40%;
          }
          .delay-1 {
            left: 0%;
          }
        }
      }
      #crm {
        .image-wrapper {
          .delay-3,
          .delay-2 {
            width: 25%;
          }
        }
      }
      #inventory {
        .image-wrapper {
          .delay-1,
          .delay-2,
          .delay-3 {
            width: 25%;
          }
        }
      }
    }
    &::after {
      bottom: 10%;
    }
  }
}
@media (max-width: 1199px) {
  .animation-carousal-main {
    .animation-carousal {
      .slider-wrapper {
        .slider-right {
          .image-wrapper {
            .image-lable {
              padding: 5px 15px;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 991px) {
  .section-title {
    padding-bottom: 20px;
  }
  .client-storis-main {
    .swiper-wrapper {
      .swiper-slide {
        img {
          width: 100%;
        }
        .video-play-button {
          i::before {
            font-size: 45px;
          }
        }
      }
    }
  }
  .hero-section-main {
    padding-top: 100px;
    .hero-banner-bg,
    &::before,
    &::after {
      display: none;
    }

    .hero-image-wrapper {
      margin-top: 40px;
      .hero-popup1 {
        left: -25px;
        top: 22%;
        width: 12%;
      }
      .hero-popup3 {
        top: -20%;
        width: 25%;
      }
      .hero-popup2 {
        right: -30px;
        width: 40%;
      }
    }
  }
  .animation-carousal-main {
    .animation-carousal {
      .slider-wrapper {
        flex-wrap: wrap;
        gap: 0px;
        .slider-left,
        .slider-right {
          width: 100%;
          padding: 0px 30px 0px;
        }
        .slider-right {
          .image-wrapper {
            .image-lable {
              &:nth-child(2) {
                left: -10px;
              }
              &:nth-child(3) {
                right: 0px;
              }
              &:nth-child(4) {
                right: -30px;
              }
            }
          }
        }
      }
    }
  }
  .swiper-button-prev {
    left: 44.5%;
  }
  .swiper-button-next {
    left: 51.5%;
  }
  .solutions-tab-main {
    &::after {
      display: none;
    }
    .tab-content {
      margin-top: 20px;
    }
  }
}

@media (max-width: 768px) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6,
  p,
  .text-large,
  .text-medium,
  .text-small {
    margin-bottom: 16px;
  }
  .section-title {
    padding-bottom: 0px;
  }
  .hero-section-main {
    background: transparent;
    padding-top: 80px;
    .hero-image-wrapper {
      margin-top: 20px;
      .hero-popup1,
      .hero-popup2,
      .hero-popup3 {
        display: none;
      }
    }
  }
  .animation-carousal-main {
    .animation-carousal {
      padding-bottom: 30px;
      .slider-wrapper {
        .slider-left,
        .slider-right {
          background: none;
          .lable {
            margin-bottom: 16px;
          }
        }
        .slider-right {
          .image-wrapper {
            left: 20px;

            .image-lable {
              font-size: 12px;
              &:nth-child(2) {
                left: -20px;
              }
              &:nth-child(3) {
                right: 20px;
              }
              &:nth-child(4) {
                right: 0px;
              }
            }
          }
        }
      }
    }
  }
  .client-section-main {
    .client-section-wrapper {
      .client-logos {
        .logo-wrapper {
          max-width: 40px;
        }
      }
    }
  }
  .box-with-image-main {
    background: transparent;
    .cards-wrapper {
      grid-template-columns: 1fr;
      gap: 16px;
      .cards {
        padding: 16px;
        border-radius: 16px;

        .title {
          margin-bottom: 0px;
        }
        p {
          margin-bottom: 2px;
        }
        a {
          padding-right: 15px;
        }
      }
    }
  }
  .config-image-main {
    background: transparent;
    .row {
      background: linear-gradient(
        var(--primary-color) 80%,
        var(--primary-purple) 110%
      );
      border-radius: 20px;
      padding: 32px 0px;
      margin: 0px;
      gap: 20px;
    }
  }
  .client-storis-main {
    .swiper-wrapper {
      padding-bottom: 40px;
      .swiper-slide {
        .video-play-button {
          i::before {
            font-size: 75px;
          }
        }
        .text-wrapper {
          bottom: 17px;
        }
      }
    }
  }
  .swiper-button-next,
  .swiper-button-prev {
    height: 20px;
    width: 20px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px;
  }
  .business-type-main {
    background: linear-gradient(
      var(--primary-purple) 0%,
      var(--primary-color) 100%
    );
    .section-title {
      h2,
      p {
        color: var(--white);
      }
    }
    &::after,
    &::before {
      display: none;
    }
    .business-Swiper {
      padding-bottom: 40px;
      .swiper-slide {
        img {
          width: 100%;
        }
      }
    }
  }
  .plan-cta-main {
    .cta-wrapper {
      padding: 32px 16px;
    }
  }
}

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