@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");
}
* {
  box-sizing: border-box;
}

:root {
  --primary-color: #0081b6;
  --primary-light: #0092cb;
  --primary-ligher: #f0faff;
  --primary-dark: #07334a;
  --primary-light-border: #cfeaf5;

  --secondary-color: #333333;
  --secondary-light: #808080;
  --secondary-ligher: #ededed;

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

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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
a,
.btn {
  font-family: "Plus Jakarta Sans";
  color: var(--secondary-color);
}

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

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

h3,
.h3 {
  font-weight: 700;
  font-size: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

h4,
.h4 {
  font-weight: 600;
  font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
  line-height: 1.3;
  margin-bottom: 16px;
  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(1rem, 0.975rem + 0.125vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0;
}

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

.text-small {
  font-weight: 400;
  font-size: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: 0;
}

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

.color-primary {
  color: var(--primary-color);
}
.btn-primary {
  position: relative;
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15px;
  padding: 16px 24px;
  border-radius: 24px;
  color: var(--white);
  border: 1px solid var(--primary-color);
  display: inline-block;
  width: max-content;
  background: var(--primary-gradient);

  &:hover,
  &:active,
  &:focus {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
  }

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

    &::after {
      position: absolute;
      content: "";
      background-image: url(../images/arrow.svg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 10px;
      width: 18px;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      filter: grayscale(100%) brightness(1000%);
    }
    &:hover,
    &:active,
    &:focus {
      &::after {
        filter: none;
      }
    }
  }
}

.btn-secondary {
  position: relative;
  font-size: clamp(0.875rem, 0.8625rem + 0.0625vw, 0.9375rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15px;
  padding: 16px 24px;
  border-radius: 24px;
  color: var(--white);
  border: 1px solid var(--white);
  display: inline-block;
  width: max-content;
  background: var(--secondary-color);

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

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

    &::after {
      position: absolute;
      content: "";
      background-image: url(../images/arrow.svg);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      height: 10px;
      width: 18px;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      filter: grayscale(100%) brightness(1000%);
    }
    &:hover,
    &:active,
    &:focus {
      &::after {
        filter: brightness(0);
      }
    }
  }
}
.section-title {
  text-align: center;
  padding-bottom: 44px;
}
section {
  padding: 60px 0;
}
.mt-6 {
  margin-top: 60px;
}
.mb-6 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-weight: 700;
  }
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3 {
    letter-spacing: 0;
  }
  .btn-primary,
  .btn-secondary {
    padding: 12px 18px;
  }
}
.blue-text {
  color: var(--primary-color);
}
/* navigation */
.fixed-top {
  top: 10px;
  .navigation {
    border-radius: 60px;
    border: 1px solid var(--secondary-ligher);
    padding: 5px 20px;
    background-color: var(--white);
    box-shadow: 0 5px 5px -2px var(--shadow);
  }
}

.menuItem > li {
  height: 70px;
  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.html) !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;
}
#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%);
  }
}

/* footer */

#footer {
  background-color: var(--primary-dark);
  padding-top: 120px;
  overflow: hidden;
  position: relative;
  color: var(--white);
  .footer-top {
    background-image: url(../images/footer-bg.webp);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .container {
    position: relative;
    z-index: 2;
  }
  .h5 {
    color: var(--white);
  }
}
.footer-shape {
  padding: 100px 0px 120px;
}

.footer-top .footer-links {
  margin-bottom: 30px;
}
.footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.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 {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  .text-large {
    line-height: 1.3;
  }
}
.footer-top .footer-links ul a {
  margin: 0px;
  color: var(--white);
}
.footer-top .footer-links ul a:hover {
  color: var(--white);
}
.footer-top .social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  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;
}
.border-right {
  border-right: 1px solid var(--secondary-color);
}
.play-store {
  display: flex;
  margin: 16px 0px;
  gap: 16px;
}
.footer-menubar .position-absolute {
  bottom: 10%;
  left: 30%;
}
.footer-contact {
  margin-bottom: 16px;
  img {
    max-width: 180px;
  }
}
.email {
  margin-bottom: 16px;
  a {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--white);
  }
}
.certificate img {
  height: 70px;
}
.footer-bottom {
  padding: 20px 27px 20px 27px;
  border-top: 1px solid #d0daf5;
}
.footer-bottom a,
.footer-bottom .copyright {
  color: #d0daf5;
}
.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 only screen and (min-width: 1200px) and (max-width: 1365px) {
  .menuItem > li {
    font-size: 12px;
    padding: 0 6px;
  }
  .footer-top .social-links a {
    margin-right: 0;
  }
}

@media (max-width: 1200px) {
  .footer-top .social-links {
    gap: 5px;
  }
}

@media (max-width: 991px) {
  .footer-top .social-links {
    gap: 12px;
    margin: 0px;
  }
  .footer-shape {
    padding: 45px 0px 32px;
  }
  .play-store {
    flex-wrap: nowrap;
    margin: 16px 0px 0px;
  }
  .footer-bottom {
    padding: 20px 12px 65px;
  }
  .footer-top .footer-links ul .h5 {
    margin-bottom: 20px;
  }
  .certificate img {
    height: auto;
  }
  #footer {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .footer-shape {
    padding: 25px 0px;
  }
  .play-store {
    gap: 16px;
    a {
      text-align: start;
    }
  }
  .footer-menubar .row {
    gap: 8px 0px;
  }
  .footer-contact {
    margin-bottom: 22px;
  }
  .email {
    margin-bottom: 24px;
  }
  .footer-top .footer-links {
    margin-bottom: 24px;
  }
  .footer-bottom {
    padding: 0px 0px 8px;
    border: none;
    .row:has(.border-on-top) {
      border-bottom: 1px solid #d0daf5;
      margin-bottom: 16px;
    }
  }
  .footer-top .footer-links ul li {
    padding-bottom: 8px;
  }
  .footer-top .footer-links ul .h5 {
    margin-bottom: 10px;
  }
  #footer {
    padding-top: 0px;
  }
  .footer-bottom {
    .copyright {
      margin-bottom: 12px;
    }
  }
}

/* Thank for schedule */
.thanks-for-schedule-main {
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
  background: var(--primary-ligher);
  .inner-container {
    display: table-cell;
    vertical-align: middle;
  }
  .thanks-content {
    .logo {
      max-width: 180px;
    }
  }
  .wrapper {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    &::before {
      content: "";
      position: absolute;
      inset: 0;
      animation: rotateBg 6s linear infinite;
      background: linear-gradient(var(--primary-color) 50%, transparent 50%);
      z-index: -1;
      height: 1650px;
      width: 1800px;
      left: -27%;
      top: -100%;
    }
    .bg-wrapper {
      background-color: var(--primary-ligher);
      border-radius: 10px;
    }
    .btn-primary {
      width: auto;
    }
    .image-wrapper {
      position: relative;
      bottom: 0px;
    }
  }
  &::after {
    position: absolute;
    content: "";
    height: 500px;
    width: 300px;
    background: url(../images/ellipse-2.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: -2%;
    top: 0%;
  }
  &::before {
    position: absolute;
    content: "";
    height: 600px;
    width: 260px;
    background: url(../images/ellipse-3.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    right: 0px;
    bottom: 0%;
  }
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1400px) {
  .thanks-for-schedule-main {
    .wrapper {
      &::before {
        height: 1350px;
        width: 1600px;
      }
    }
  }
}
@media (max-width: 1200px) {
  .thanks-for-schedule-main {
    .wrapper {
      &::before {
        height: 1250px;
      }
    }
  }
}
@media (max-width: 991px) {
  .thanks-for-schedule-main {
    .thanks-content {
      .logo {
        margin-bottom: 32px !important;
      }
    }
    .wrapper {
      margin: 50px 0px;
      .bg-wrapper {
        padding: 42px 16px 0px;
      }
      .image-wrapper {
        position: relative;
        bottom: -1.5rem;
      }
      .btn-primary {
        margin: 20px 0px;
      }
      &::before {
        left: -67%;
        top: -14%;
      }
    }
    &.demo {
      .wrapper {
        .section-title {
          h3 {
            margin: 0px;
          }
        }
        .btn-primary {
          margin: 0px;
        }
        .ctas {
          margin: 0px 0px 40px;
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 10px;
        }
      }
    }
  }
}

/* popup */
.modal-body {
  .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: 20px;
    padding: 16px 24px;
    box-shadow: 0px 5px 5px var(--shadow);
    border: 1px solid var(--primary-light-border);
    h5,
    h6 {
      text-align: left;
    }
    .form-control {
      background: transparent;
      border-radius: 50px;
      border: 1px solid var(--secondary-ligher);
      padding: 10px 20px;
      /* &::placeholder {
        color: var(--white);
      } */
      &:focus {
        box-shadow: none;
      }
    }
    .popup-form {
      border-radius: 20px;
      padding: 37px 4px;
      box-shadow: 0px 5px 5px var(--shadow);
      border: 1px solid var(--primary-light-border);
    }
    .iti--separate-dial-code .iti__selected-flag {
      background: transparent;
    }
    .btn-primary {
      width: 100%;
    }
    .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) {
  #scheduleademo {
    .modal-content {
      .modal-body {
        h4 {
          margin-bottom: 20px !important;
          &:after {
            height: 60px;
            width: 50px;
          }
        }

        .careersectioncard {
          border-radius: 5px;
          padding: 10px;
          .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;
          }
        }
      }
    }
  }
}

/* retail-erp-demo-overview page */
.outer-container {
  position: absolute;
  display: table;
  width: 100%;
  height: 100%;
}
.inner-container {
  display: table-cell;
  vertical-align: middle;
}
iframe.player2 {
  width: 100%;
  height: 390px;
  border-radius: 10px;
  border: 4px solid var(--primary-color);
}
.mute {
  position: absolute;
  right: 5px;
  top: 5px;
  display: none;
  height: 30px;
  width: 30px;
  text-align: center;
  padding: 5px;
}
.lang-tab {
  border-bottom: none !important;
}
.lang-tab a {
  border: 3px solid var(--primary-color) !important;
  border-bottom: none !important;
  font-size: 14px;
  padding: 5px 10px;
}
.lang-tab a.active {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}
.lang-tab li:first-child a {
  border-top-right-radius: 0px !important;
}
.lang-tab li:last-child a {
  border-top-left-radius: 0px !important;
}
@media (max-width: 500px) {
  iframe.player2 {
    height: 200px;
  }
}
/* hero secction */
.hero-main {
  margin-top: 170px;
  position: relative;
  &::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 0px;
    width: 100%;
    height: 120%;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(240, 250, 255, 0.75) 20%,
      rgba(255, 255, 255, 0) 90%
    );
    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;
    }
  }
  .hero-wrapper {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    p {
      margin: 0px;
    }
  }
}

/* integration */
.integration-main {
  overflow: hidden;
  .integrations-wrapper {
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

    .circle {
      position: absolute;
      border-radius: 50%;
      border: 2px dashed var(--secondary-light);
    }

    /* Circle sizes + rotation directions */
    #circle-inner {
      width: 280px;
      height: 280px;
      animation: cw 30s linear infinite;
      .item.logo {
        height: 55%;
        width: 55%;
        border: none;
        margin: -28%;
        animation: ccw 30s linear infinite;
      }
      .item {
        .image-wrapper {
          animation: ccw 30s linear infinite;
        }
      }
      .item:nth-child(1) {
        transform: rotate(0deg) translate(132px) !important;
      }
      .item:nth-child(2) {
        transform: rotate(180deg) translate(132px) !important;
      }
    }

    #circle-outer {
      width: 440px;
      height: 440px;
      animation: cw 30s linear infinite;
      .item {
        .image-wrapper {
          animation: ccw 30s linear infinite;
        }
      }
      .item:nth-child(1) {
        transform: rotate(-40deg) translate(215px) !important;
      }
      .item:nth-child(2) {
        transform: rotate(60deg) translate(204px) !important;
      }
      .item:nth-child(3) {
        transform: rotate(120deg) translate(204px) !important;
      }
      .item:nth-child(4) {
        transform: rotate(160deg) translate(225px) !important;
      }
      .item:nth-child(5) {
        transform: rotate(240deg) translate(225px) !important;
      }
    }

    #circle-3 {
      width: 600px;
      height: 600px;
      animation: cw 30s linear infinite;
      .item {
        .image-wrapper {
          animation: ccw 30s linear infinite;
        }
      }
      .item:nth-child(1) {
        transform: rotate(36deg) translate(300px) !important;
      }
      .item:nth-child(2) {
        transform: rotate(144deg) translate(300px) !important;
      }
      .item:nth-child(3) {
        transform: rotate(288deg) translate(300px) !important;
      }
    }

    .item img {
      width: 100%;
    }

    /* Sizes for each circle's items */
    .item {
      display: flex;
      justify-content: center;
      align-items: center;
      /* border: 2px solid var(--secondary-ligher); */
      background-color: var(--white);
      position: absolute;
      top: 50%;
      left: 50%;
      border-radius: 50%;
      overflow: hidden;
    }
    #circle-inner .item {
      width: 32%;
      height: 32%;
      margin: -16%;
    }

    #circle-outer .item {
      width: 19%;
      height: 19%;
      margin: -8%;
    }

    #circle-3 .item {
      width: 13%;
      height: 13%;
      margin: -6%;
    }
  }
  .integration-content {
    position: relative;
    &::before {
      content: "";
      position: absolute;
      top: -350px;
      right: -200px;
      height: 500px;
      width: 800px;
      background-image: url(../images/rectangle.webp);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
    }
  }
}

/* Clockwise and counter-clockwise animations */
@keyframes cw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ccw {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}
/* integrations section */

@media (max-width: 1250px) {
  .integration-main {
    .integrations-wrapper {
      height: 550px;
      #circle-3 {
        width: 500px;
        height: 500px;
        .item:nth-child(1) {
          transform: rotate(36deg) translate(250px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(144deg) translate(250px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(288deg) translate(250px) !important;
        }
      }
      #circle-outer {
        width: 350px;
        height: 350px;
        .item:nth-child(1) {
          transform: rotate(-40deg) translate(178px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(60deg) translate(168px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(120deg) translate(178px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(160deg) translate(178px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(240deg) translate(178px) !important;
        }
        .item:nth-child(6) {
          transform: rotate(300deg) translate(178px) !important;
        }
      }
      #circle-inner {
        width: 200px;
        height: 200px;
        .item:nth-child(1) {
          transform: rotate(0deg) translate(92px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(180deg) translate(92px) !important;
        }
      }
    }
  }
}
@media (max-width: 991px) {
  .integration-main {
    .integrations-wrapper {
      height: 550px;
    }
    .integration-content {
      text-align: center;
      &::before {
        display: none;
      }
    }
  }
}
@media (max-width: 600px) {
  .integration-main {
    .integrations-wrapper {
      height: 300px;
      .circle {
        border: 1px dashed var(--secondary-light);
      }
      #circle-3 {
        width: 280px;
        height: 280px;
        .item {
          width: 18%;
          height: 18%;
        }
        .item:nth-child(1) {
          transform: rotate(36deg) translate(132px) !important;
          img {
            transform: rotate(30deg);
          }
        }
        .item:nth-child(2) {
          transform: rotate(144deg) translate(140px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(288deg) translate(140px) !important;
        }
      }
      #circle-outer {
        width: 200px;
        height: 200px;
        .item {
          width: 25%;
          height: 25%;
        }
        .item:nth-child(1) {
          transform: rotate(-40deg) translate(92px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(60deg) translate(92px) !important;
        }
        .item:nth-child(3) {
          transform: rotate(120deg) translate(92px) !important;
        }
        .item:nth-child(4) {
          transform: rotate(160deg) translate(98px) !important;
        }
        .item:nth-child(5) {
          transform: rotate(240deg) translate(107px) !important;
        }
      }
      #circle-inner {
        width: 100px;
        height: 100px;

        .item.logo {
          height: 35%;
          width: 35%;
          border: none;
          margin: -18%;
        }
        .item {
          width: 48%;
          height: 48%;
        }
        .item:nth-child(1) {
          transform: rotate(0deg) translate(37px) !important;
        }
        .item:nth-child(2) {
          transform: rotate(180deg) translate(53px) !important;
        }
      }
    }
  }
}

/* horizontal tab */
.horizontal-tab-main {
  .buildBusinessSection {
    ul {
      gap: 32px;
      justify-content: center;
      border: none;
       &::-webkit-scrollbar {
        display: none;
      }
      .nav-item {
        .nav-link {
          color: var(--secondary-color);
          padding: 16px 20px;
          border: 1px solid var(--primary-light-border);
          border-radius: 30px;
          &:hover,
          &:hover,
          &.active {
            background: var(--primary-gradient);
            color: var(--white);
          }
        }
      }
    }
  }
  #myTabContent2 {
    margin-top: 60px;
    border-radius: 48px;
    padding: 32px 0px 0px 32px;
    position: relative;
    background-color: var(--white);
    img {
      filter: drop-shadow(0 100px 50px var(--shadow));
    }
    &::before {
      content: "";
      position: absolute;
      top: -180px;
      left: -250px;
      height: 500px;
      width: 800px;
      background-image: url(../images/rectangle.webp);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      z-index: -1;
    }
  }
}
/* card with image */
.card-with-image-main {
  .card-with-image {
    box-shadow: 0px 60px 100px var(--shadow);
    border-radius: 8px;
    background-color: var(--white);
    height: 100%;
    .card-text {
      padding: 32px 36px;
      p {
        margin: 0px;
      }
    }
  }
}

/* tabs */
.tabs-main {
  overflow: hidden;
  .tabs-wrapper {
    background-color: var(--primary-ligher);
    padding: 60px;
    border-radius: 16px;
    #solutionTabs {
      background-color: var(--white);
      border-radius: 60px;
      padding: 24px 40px;
      margin-bottom: 51px;
      border: 1px solid var(--primary-light-border);
      overflow-x: auto;
      flex-wrap: nowrap;
      &::-webkit-scrollbar {
        display: none;
      }
      .nav-link {
        color: var(--secondary-color);
        margin: 0px;
        padding: 16px 30px;
        border-radius: 30px;
        width: max-content;
        &:hover,
        &.active,
        &:focus {
          color: var(--white);
          background: var(--primary-gradient);
          box-shadow: 0px 4px 5px var(--shadow);
        }
      }
    }
    .tab-content {
      h3 {
        margin-bottom: 32px;
      }
      p {
        margin-bottom: 60px;
      }
      img {
        filter: drop-shadow(0 100px 50px var(--shadow));
      }
    }
  }
}
/* animation cards */
.animation-cards-main {
  .animation-cards {
    text-align: center;
    box-shadow: 0px 70px 100px var(--shadow);
    border-radius: 8px;
    background-color: var(--white);
    padding: 32px;
    height: 100%;
    p {
      margin: 0px;
    }
  }
}

/* solutions tab main */
.solutions-tab-main {
  position: relative;
  &::after {
    position: absolute;
    content: "";
    height: 69px;
    width: 100%;
    top: 0px;
    background-color: var(--primary-ligher);
    z-index: -1;
  }
  #buildBusinessTab {
    border: none;
    padding: 10px 0px;
    &.nav-tabs {
      justify-content: space-evenly;
      .nav-item {
        width: 24%;
      }
      .nav-link {
        width: 100%;
        padding: 5px 15px;
        border-radius: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border: none;
        --bs-bg-opacity: 1;
        background-color: var(--primary-ligher);
        .icon {
          height: 40px;
          width: 40px;
          background-color: var(--white);
          border-radius: 25px;
          display: flex;
          align-items: center;
          justify-content: center;
        }
        &:hover,
        &.active,
        &:focus {
          background-color: var(--white);
          color: var(--secondary-color);
          box-shadow: 0px 4px 5px var(--shadow);
          .icon {
            background-color: var(--primary-ligher);
          }
        }
      }
    }
  }
  #myTabContent {
    margin-top: 10px;
    .buildBusinessImg {
      img {
        filter: drop-shadow(0 50px 35px var(--shadow));
      }
    }
  }
}
@keyframes ctahover {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* cta strip */
.cta-strip-main {
  overflow: hidden;
  .cta-strip-wrapper {
    background-color: var(--white);
    padding: 60px;
    border-radius: 16px;
    border: 1px solid var(--secondary-ligher);
    box-shadow: 0 20px 60px var(--shadow);
    text-align: center;
    position: relative;
    &::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -250px;
      height: 350px;
      width: 450px;
      background-image: url(../images/rectangle.webp);
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      z-index: -1;
    }
  }
}

/* stats main */
.stats-main {
  .stats-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-image: linear-gradient(var(--white) 50%, var(--blue-ligher));
    padding: 60px 0px;
    border-radius: 8px;
    .stats {
      text-align: center;
    }
  }
}

/* configer image */
.configer-image-main {
  background-color: var(--primary-dark);
  overflow: hidden;
  h2,
  p {
    color: var(--white);
  }
  .btn-primary {
    margin-top: 24px;
  }
  .text-wrapper {
    position: relative;
    z-index: 1;
    &::after {
      position: absolute;
      content: "";
      height: 150px;
      width: 150px;
      background: url(../images/home-page/vector.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      left: 0px;
      top: -40%;
      z-index: -1;
    }
  }
  .image-wrapper {
    position: relative;
    display: flex;
    justify-content: end;
    &::after {
      position: absolute;
      content: "";
      height: 100%;
      width: 65%;
      background: url(../images/home-page/config-bg.webp);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      right: 80%;
      top: 0px;
    }
    &.small-image {
      &::after {
        right: 50%;
      }
    }
  }
  .offset-2 {
    padding-right: 0px;
  }
}

.fix-image {
  width: 100%;
  position: fixed;
  bottom: 0px;
  z-index: -1;
}
.image-mobile {
  display: none;
}

/*  client section */
.client-section-main {
  .client-section-wrapper {
    text-align: center;
    .client-logos {
      display: flex;
      justify-content: space-evenly;
    }
  }
}

/* Client story */
.client-story-main {
  .client-story {
    position: relative;
    padding-bottom: 70px;
    .slider-wrapper {
      background: var(--primary-dark);
      border-radius: 12px;
      padding: 48px 40px;
      display: flex;
      align-items: center;
      gap: 52px;
      position: relative;
      overflow: hidden;
      .client-video {
        position: relative;
        .video-play-button {
          position: absolute;
          color: var(--white);
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          i::before {
            font-size: 100px;
          }
        }
      }
      .client-detail {
        width: 60%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        position: relative;
        z-index: 1;
        .client-starts {
          background-color: #ffcc00;
          border-radius: 25px;
          padding: 10px 25px;
          width: max-content;
          color: var(--white);
        }
        p,
        .h4 {
          color: var(--white);
        }
      }
      &::after {
        position: absolute;
        content: "";
        background: radial-gradient(
          circle,
          transparent 10%,
          var(--primary-color) 30%,
          var(--primary-color) 50%,
          transparent 70%
        );
        height: 500px;
        width: 500px;
        right: -230px;
        bottom: -230px;
        filter: blur(20px);
      }
    }
    .swiper-pagination {
      width: max-content;
      left: 16px;
      bottom: 0px;
      .swiper-pagination-bullet-active {
        background: var(--primary-color);
      }
    }
    .swiper-button-next {
      position: absolute;
      top: 95%;
      right: 16px;
      height: 48px;
      width: 48px;
      border-radius: 50px;
      border: 1px solid var(--secondary-color);
      color: var(--secondary-color);
      &::after {
        display: none;
      }
      &:hover {
        background-color: var(--secondary-color);
        color: var(--white);
      }
    }
    .swiper-button-prev {
      position: absolute;
      top: 95%;
      left: 90%;
      height: 48px;
      width: 48px;
      border-radius: 50px;
      border: 1px solid var(--secondary-color);
      color: var(--secondary-color);
      &::after {
        display: none;
      }
      &:hover {
        background-color: var(--secondary-color);
        color: var(--white);
      }
    }
    .swiper-slide {
      width: 70%;
    }
  }
}

.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 query */
@media (min-width: 2100px) {
  .configer-image-main {
    .image-wrapper {
      &.small-image {
        &::after {
          display: none;
        }
      }
    }
  }
}
@media (min-width: 1800px) {
  .configer-image-main {
    .image-wrapper {
      &::after {
        right: 700px;
      }
    }
  }
}
@media (max-width: 1700px) {
  .configer-image-main {
    .image-wrapper {
      &.small-image {
        &::after {
          right: 65%;
          height: calc(100% + 60px);
          top: -60px;
        }
      }
    }
  }
}
@media (min-width: 1800px) {
  .configer-image-main {
    .image-wrapper {
      &::after {
        right: 700px;
      }
    }
  }
}
@media (max-width: 1400px) {
  .client-story-main {
    .client-story {
      .swiper-button-prev {
        left: 90%;
      }
      /* .slider-wrapper {
        &::after {
          height: 400px;
          width: 400px;
          right: -200px;
          bottom: -200px;
        }
      } */
    }
  }
}
@media (max-width: 1199px) {
  .configer-image-main {
    .image-wrapper {
      &::after {
        height: calc(100% + 60px);
        top: -60px;
        width: 77%;
      }
    }
  }
  .horizontal-tab-main {
    .buildBusinessSection {
      ul {
        /* flex-wrap: nowrap; */
        gap: 20px;
        /* overflow-y: hidden;
        justify-content: start; */
        .nav-item {
          .nav-link {
            width: max-content;
          }
        }
      }
    }
  }
  .client-story-main {
    .client-story {
      .swiper-button-prev {
        left: 88%;
      }
      /* .slider-wrapper {
        &::after {
          height: 200px;
          width: 200px;
          right: -100px;
          bottom: -100px;
          filter: blur(10px);
        }
      } */
    }
  }
  .animation-cards-main {
    .row:has(.col-6) {
      gap: 26px 0px;
    }
  }
}

@media (max-width: 991px) {
  .video-overlay iframe {
    width: 80% !important;
    height: 33% !important;
  }
  .card-with-image-main {
    .cards-wrapper {
      gap: 20px 0px;
      justify-content: center;
    }
  }
  .configer-image-main {
    .image-wrapper {
      &::after {
        display: none;
      }
    }
  }
  .cta-strip-main {
    .cta-strip-wrapper {
      padding: 30px;
    }
  }
  .solutions-tab-main {
    #buildBusinessTab {
      &.nav-tabs {
        .nav-link {
          padding: 10px;
        }
      }
    }
    &::after {
      height: 79px;
    }
  }
  .client-section-main {
    .client-section-wrapper {
      .client-logos {
        justify-content: space-between;
        .logo-wrapper {
          width: 100px;
        }
      }
    }
  }
  .stats-main {
    .stats-wrapper {
      padding: 40px 0px;
    }
  }
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6,
  p {
    margin-bottom: 20px;
  }
  .hero-main {
    margin-top: 90px;
  }
  .tabs-main {
    .tabs-wrapper {
      .tab-content {
        .row {
          gap: 20px;
          .offset-lg-1 {
            text-align: center;
          }
        }
        p {
          margin-bottom: 40px;
        }
        h3 {
          display: none;
        }
        img {
          filter: unset;
        }
      }
    }
  }
  .client-story-main {
    .client-story {
      .swiper-button-prev,
      .swiper-button-next {
        top: 94%;
      }
      .swiper-button-prev {
        left: 84%;
      }
      .slider-wrapper {
        padding: 30px;
        gap: 20px;
        .client-detail {
          width: 80%;
          gap: 10px;
        }
        .client-detail {
          .client-starts {
            padding: 0px 20px 6px;
            i {
              font-size: 10px;
            }
          }
        }
        .client-video {
          .video-play-button {
            i::before {
              font-size: 100px;
            }
          }
        }
      }
    }
  }
  .video-overlay iframe {
    width: 80% !important;
    height: 33% !important;
  }
  .horizontal-tab-main {
    .horizontal-tab-carousal {
      padding: 16px;
      padding-bottom: 70px;
      background-color: var(--primary-ligher);
      img {
        margin-bottom: 20px;
        width: 100%;
      }
      .swiper-pagination {
        width: max-content;
        left: 16px;
        bottom: 16px;
        .swiper-pagination-bullet-active {
          background: var(--primary-color);
        }
      }
      .swiper-button-next,
      .swiper-button-prev {
        position: absolute;
        border: 1px solid var(--secondary-color);
        color: var(--secondary-color);
        background-color: var(--white);
        height: 48px;
        width: 48px;
        border-radius: 50px;
        &::after {
          display: none;
        }
        &:hover {
          background-color: var(--secondary-color);
          color: var(--white);
        }
      }
      .swiper-button-next {
        top: auto;
        right: 16px;
        bottom: 16px;
      }
      .swiper-button-prev {
        top: auto;
        left: auto;
        bottom: 16px;
        right: 90px;
      }
    }
    &:has(.horizontal-tab-carousal) {
      padding-bottom: 0px;
    }
  }
}

@media (max-width: 767px) {
  .video-overlay iframe {
    height: 22% !important;
  }
  .cta-strip-main {
    overflow: visible;
    .cta-strip-wrapper {
      padding: 16px;
      &::before {
        display: none;
      }
    }
  }
  .animation-cards-main {
    .row:has(.col-6) {
      gap: 8px 0px;
    }
    .col-6 {
      padding: 0px 4px;
    }
    .animation-cards {
      padding: 16px;
      box-shadow: 0px 50px 50px var(--shadow);
      img {
        margin-bottom: 24px;
      }
      h4 {
        margin: 0px;
      }
      p {
        display: none;
      }
    }
  }
  .tabs-main {
    .tabs-wrapper {
      padding: 20px 0px 20px 20px;
      #solutionTabs {
        padding: 12px 28px;
        margin-bottom: 20px;
        .nav-link {
          padding: 9px 20px;
        }
      }
      .tab-content {
        p {
          margin-bottom: 20px;
        }
      }
    }
    .container:has(.tabs-wrapper) {
      padding: 0px;
    }
  }
  .section-title {
    padding-bottom: 0px;
  }
  .configer-image-main {
    padding-top: 45px;
    overflow: visible;
    margin-bottom: 70px;
    .offset-2 {
      padding-right: 0px;
      margin-top: -50px;
      &:has(.small-image) {
        margin-top: 0px;
      }
    }
    .text-wrapper {
      &::after {
        top: -40px;
      }
    }
    .image-wrapper {
      bottom: -50px;
      img {
        background-color: var(--primary-dark);
        border-radius: 8px;
      }
      &.small-image {
        img {
          background-color: unset;
        }
      }
    }
  }
  .solutions-tab-main {
    #buildBusinessTab {
      &.nav-tabs {
        overflow-x: scroll;
        gap: 15px;
        flex-wrap: nowrap;
        &::-webkit-scrollbar {
          display: none;
        }
        .nav-link {
          padding: 5px 16px;
          width: max-content;
          .icon {
            width: 32px;
            height: 32px;
          }
        }
        .nav-item {
          width: auto;
        }
      }
    }
    &::after {
      height: 69px;
    }
    #myTabContent {
      margin-top: 20px;
      .buildBusinessImg {
        img {
          filter: drop-shadow(0 30px 35px var(--shadow));
        }
      }
    }
  }
  .hero-main {
    margin-top: 80px;
    .lable {
      font-weight: 600;
    }
    &::before {
      display: none;
    }
  }
  .client-section-main {
    .client-section-wrapper {
      .client-logos {
        .logo-wrapper {
          width: 50px;
        }
      }
    }
  }
  .stats-main {
    .stats-wrapper {
      padding: 16px 0px;
      flex-wrap: wrap;
      gap: 20px 0px;
      .stats {
        width: 50%;
        p {
          margin: 0px;
        }
      }
    }
  }
  .card-with-image-main {
    .card-with-image {
      img {
        width: 100%;
      }
      .card-text {
        padding: 32px 16px 16px;
      }
    }
  }
  .mb-6 {
    margin-bottom: 20px;
  }
  .client-story-main {
    .client-story {
      .swiper-pagination {
        bottom: 2%;
      }
      .swiper-button-next,
      .swiper-button-prev {
        top: 97%;
      }
      .swiper-button-prev {
        left: auto;
        right: 17%;
      }
      .slider-wrapper {
        flex-direction: column;
        align-items: flex-start;
        .client-detail {
          width: 100%;
        }
        .client-video {
          width: 100%;
          img {
            width: 100%;
          }
        }
        /* &::after {
          height: 200px;
          width: 200px;
          right: -100px;
          bottom: -100px;
          filter: blur(10px);
        } */
      }
      .swiper-slide {
        width: 100%;
      }
    }
  }
  .video-overlay iframe {
    height: 22% !important;
  }
  /* .cta-strip-main {
    overflow: visible;
  } */
}

@media (max-width: 500px) {
  .client-story-main {
    .client-story {
      .swiper-button-next,
      .swiper-button-prev {
        width: 32px;
        height: 32px;
      }
    }
  }
  .tabs-main {
    .tabs-wrapper {
      .tab-content {
        .btn-primary {
          font-size: 12px;
        }
      }
    }
  }
  .image-desktop {
    display: none;
  }
  .image-mobile {
    display: block;
  }
  .stats-main {
    .col-12 {
      padding: 0px;
    }
    .stats-wrapper {
      border-radius: 0px;
    }
  }
  .horizontal-tab-main {
    .horizontal-tab-carousal {
      .text-large {
        margin: 0px;
      }
      .swiper-button-next,
      .swiper-button-prev {
        width: 32px;
        height: 32px;
      }
      .swiper-button-prev {
        right: 70px;
      }
    }
  }
  .col-12:has(.horizontal-tab-carousal) {
    padding: 0px;
  }
  .integration-main {
    .integration-content {
      &::before {
        display: block;
        top: -220px;
        right: -250px;
        height: 500px;
        width: 500px;
      }
    }
  }
}
@media (max-width: 550px) {
  .client-story-main {
    .client-story {
      .slider-wrapper {
        padding: 20px 16px;
        gap: 52px;
        .client-detail {
          gap: 16px;
        }
      }
    }
    .col-12:has(.swiper) {
      padding: 0px;
    }
  }
}
@media (max-width: 450px) {
  .client-story-main {
    .client-story {
      .slider-wrapper {
        flex-direction: column;
        align-items: flex-start;
        .client-detail {
          width: 100%;
        }
      }
    }
  }
}
