:root {
  --primary-color: 37, 37, 37;
  --secondary-color: 89, 144, 196;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --subtext-color: 141, 141, 141;
  --text-color: 37, 37, 37;
  --light-orange: 255, 233, 222;
  --light-pink: 254, 227, 244;
}

/************************
    reset css 
*************************/
h1 {
  font-size: calc(20px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
}

h2 {
  font-size: calc(22px + (38 - 22) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
}

h3 {
  font-size: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
}

h4 {
  font-size: calc(18px + (26 - 18) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
}

h5 {
  font-size: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
}

h6 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
}

p {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: 0;
}

a {
  text-decoration: none;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
}

@media screen and (min-width: 1600px) {
  .custom-container {
    max-width: 1515px;
    margin-inline: auto;
  }
}

body {
  height: 100%;
  /* font-family: "Poppins", sans-serif; */
  font-family: "jost";
  /* overflow: hidden; */
}

section {
  padding-block: calc(40px + (80 - 40) * (100vw - 320px) / (1920 - 320));
}

/************************
    Button css 
*************************/
.btn {
  padding: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320)))
    calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  border-radius: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.view-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;
  background: rgb(var(--primary-color));
  color: #fff;
  border-radius: 10px;

  transition: 0.3s ease;
}

.view-demo svg {
  transition: 0.3s ease;
}

.view-demo:hover svg {
  transform: translateX(6px);
}

.view-demo:hover {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
}

/************************
    header section 
*************************/
header {
  position: absolute;
  width: 100%;
  padding-block: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
  transition: all 0.6s ease-in-out;
  z-index: 3;
  backdrop-filter: blur(2px);
}

/* when mobile menu is open */
header:has(.navbar .navbar-collapse.show).nav-up,
header:has(.navbar .navbar-collapse.show).nav-down {
  transform: unset;
  top: 0;
}

header.nav-down {
  position: fixed;
  top: -100px;
  transform: translateY(-500px);
}

header.nav-down ~ .key-feature-section .features-tab {
  position: sticky;
  top: 10px;
  transition: all 0.5s ease-in-out;
}

header.nav-down.nav-up {
  top: 0;
  transform: translateY(0);
}

header.nav-down.nav-up ~ .key-feature-section .features-tab {
  position: sticky;
  top: 120px;
}

#headerTop.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  animation: slideDown 0.8s ease forwards;
  background: rgba(var(--white));
  padding-block: 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

#headerTop.sticky .navbar {
  border: none;
  width: 100%;
  gap: calc(20px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
}

#headerTop {
  transition: all 0.3s ease;
}

header .navbar .btn-box .buy-btn {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
}

/************************
    navbar
*************************/
.navbar {
  align-items: center;
  background: rgb(var(--white));
  padding: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320)))
    calc(8px + (18 - 8) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--primary-color), 0.15);
  width: fit-content;
  gap: calc(20px + (180 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-inline: auto;
  flex-wrap: nowrap;
}

@media (max-width: 1199px) {
  .navbar {
    width: 100%;
    justify-content: space-between;
    gap: 15px;
  }
}

.navbar .btn {
  margin-left: auto;
  padding: calc(10px + (12 - 10) * (100vw - 320px) / (1920 - 320))
    calc(6px + (20 - 6) * (100vw - 320px) / (1920 - 320));
}

.navbar .logo {
  height: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  display: flex;
}

footer .btn-box {
  display: flex;
  gap: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320)));
  justify-content: end;
  margin-left: auto;
}

footer .footer-content .btn-box .buy-btn {
  border: 1px solid rgba(var(--white), 1);
}

footer .btn-box .buy-btn:hover {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--primary-color), 1);
}

footer .btn-box .buy-btn:hover svg {
  filter: invert(1);
}

footer .footer-content .btn-box .demo-btn:hover {
  border: 1px solid rgba(var(--white), 1);
  background-color: transparent;
  color: rgba(var(--white), 1);
}

footer .footer-content .btn-box .demo-btn:hover svg {
  filter: invert(1);
}

/************************
    toggler
*************************/
.navbar .navbar-toggler {
  padding: 0;
  border: 0;
}

.navbar .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
  background-image: none;
}

.navbar .navbar-toggler .navbar-toggler-icon i {
  color: rgba(var(--black), 1);
  font-size: calc(18px + (34 - 18) * ((100vw - 320px) / (1920 - 320)));
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}

/************************
    navbar collapse
*************************/
.navbar .navbar-collapse .close-box,
.navbar .navbar-collapse .bg-overlay {
  display: none;
}

@media (max-width: 1199px) {
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: -330px;
    width: calc(240px + (360 - 240) * ((100vw - 320px) / (1199 - 320)));
    height: 100vh;
    background-color: rgba(var(--white), 1);
    padding: 0;
    transition: all 0.3s ease-in-out;
  }

  .navbar .navbar-collapse.show {
    left: 0;
  }

  .navbar .navbar-collapse.show .bg-overlay {
    opacity: 1;
    visibility: visible;
  }

  .navbar .navbar-collapse .bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.5);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .navbar .navbar-collapse .bg-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .navbar .navbar-collapse .navbar-nav {
    padding: 14px 20px;
    height: 100%;
  }

  .navbar .navbar-collapse .close-box {
    background-color: rgba(var(--white), 1);
    font-weight: 600;
    font-size: 17px;
    line-height: 1;
    border-bottom: 1px solid rgba(var(--subtext-color), 1);
    display: flex;
    align-items: center;
    border: unset;
    color: #222;
    width: 100%;
    padding: 14px 20px;
  }

  .navbar .navbar-collapse .close-box .close-icon {
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(var(--secondary-color), 0.15);
    color: rgba(var(--secondary-color), 1);
    transition: all 0.2s ease;
  }

  .navbar .navbar-collapse .close-box:hover .close-icon {
    transform: scale(1.1) rotate(180deg);
  }
}

/************************
    navbar nav
*************************/
.navbar .navbar-nav {
  display: flex;
  gap: calc(10px + (50 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.navbar .navbar-nav .nav-link {
  text-transform: capitalize;
  color: rgba(var(--text-color), 1);
  font-weight: 500;
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  padding: 0;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:active {
  color: rgba(var(--secondary-color), 1);
}

/************************
    review section
*************************/
.review-section .review-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  padding-bottom: 30px;
}

.review-section .review-count {
  width: 100%;
  position: relative;
}

.review-section .review-count h2 {
  font-weight: 800;
  font-size: calc(40px + (100 - 40) * ((100vw - 320px) / (1920 - 320)));
  background: linear-gradient(
    180deg,
    rgb(var(--secondary-color)) 13.67%,
    rgba(var(--secondary-color), 0) 100%
  );
  opacity: 0.4;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.review-count p {
  font-weight: 600;
  color: rgba(var(--primary-color), 1);
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.review-section .sticky-review {
  position: sticky;
  top: 280px;
  height: fit-content;
  z-index: 2;
}

.sticky-review .review-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.review-content .review-user .user-images {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-content .review-user .user-images img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  outline: 1px dotted rgba(var(--secondary-color), 1);
  outline-offset: 2px;
}

.review-user .user-content {
  margin-top: 15px;
}

.review-user .user-content p {
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(var(--subtext-color), 1);
  line-height: 26px;
  letter-spacing: 0.3px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-head .review-img {
  width: calc(40px + (60 - 40) * ((100vw - 320px) / (1920 - 320)));
  height: calc(40px + (60 - 40) * ((100vw - 320px) / (1920 - 320)));
  overflow: hidden;
  border-radius: 100%;
  transition: all 2s;
}

.review-head .review-img .profile-img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.review-head .review-info {
  width: calc(
    100% - calc(40px + (60 - 40) * ((100vw - 320px) / (1920 - 320))) - 10px
  );
}

.review-head .review-info h6 {
  font-weight: 600;
  font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(var(--text-color), 1);
}

.review-head .review-info p {
  color: rgb(var(--subtext-color));
}

.review-body {
  padding-top: calc(4px + (10 - 4) * ((100vw - 320px) / (1920 - 320)));
}

.review-body p {
  font-size: calc(15px + (16 - 15) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--subtext-color), 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.review-body .review-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
}

.review-body .rating-part {
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-body .rating-part .star-listing {
  display: flex;
  align-items: center;
  gap: calc(2px + (5 - 2) * ((100vw - 320px) / (1920 - 320)));
}

.review-body .rating-part .star-listing li {
  line-height: 1;
}

.review-body .rating-part .star-listing li i {
  color: rgba(240, 180, 52, 1);
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.review-body .rating-part span {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  margin-top: 3px;
}

.review-body .review-part .quotes {
  opacity: 0.1;
}

.review-part i.quote {
  font-size: calc(36px + (40 - 36) * ((100vw - 320px) / (1920 - 320)));
  opacity: 0.2;
  margin-top: calc(-50px + (-40 - -50) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(var(--secondary-color), 1);
}

.review-slider-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
  overflow: hidden;
  height: 700px;
}

.review-slider-wrapper::before {
  content: "";
  background: linear-gradient(
    0deg,
    rgba(var(--white), 0) 0%,
    rgb(var(--white)) 50%
  );
  width: 100%;
  height: 100px;
  display: block;
  position: absolute;
  z-index: 2;
}

.review-slider-wrapper::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(var(--white), 0) 0%,
    rgb(var(--white)) 50%
  );
  width: 100%;
  height: 100px;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.review-cards-wrapper {
  column-count: 2;
  column-gap: 20px;
}

.review-cards-wrapper .review-box-inner {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid rgba(var(--secondary-color), 0.16);
  border-radius: 10px;
  padding: calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
  background: linear-gradient(to top, #5990c417, #ffffff);
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  break-inside: avoid;
  height: max-content;
  transition: all 0.3s ease;
}

.review-cards-wrapper .review-box-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(var(--secondary-color), 0.5);
}

/*** Responsive css ***/
@media (max-width: 991px) {
  .review-section .sticky-review {
    position: relative;
    top: unset;
  }

  .sticky-review .review-content {
    text-align: center;
  }

  .review-content .review-user .user-images {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .review-cards-wrapper {
    column-count: 1;
  }
}

/************************
    fundamental section
*************************/
#fundamental {
  padding-bottom: 0;
  background: url("/assets/images/fundamentals/fundamental-bg-2.png") no-repeat
    top center/cover;
}

.integration-section {
  position: relative;
  width: 100%;
  height: calc(230px + (400 - 230) * ((100vw - 320px) / (1920 - 320)));
  overflow: visible;
}

.integration-section h3 {
  text-align: center;
  margin-top: 80px;
}

.integration-section p,
.mobile-section .description {
  color: rgb(var(--subtext-color));
}

.integration-content {
  position: absolute;
  bottom: calc(24px + (60 - 24) * ((100vw - 320px) / (1920 - 320)));
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  text-align: center;
}

.depth {
  perspective: 1000px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
}

/* .depth::after {
  width: 100%;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(var(--white), 0) 0%,
    rgba(var(--white), 1) 50%
  );
  height: 50px;
  position: absolute;
  bottom: 0;
} */

#fundamental .depth .card {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(120px + (146 - 120) * ((100vw - 320px) / (1920 - 320)));
  padding: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
  background: rgb(var(--white));
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(var(--primary-color), 0.08);
  box-shadow: 10px 17px 29px 1px rgba(var(--black), 0.15);
  -webkit-box-shadow: 10px 17px 29px 1px rgba(var(--black), 0.15);
  -moz-box-shadow: 10px 17px 29px 1px rgba(var(--black), 0.15);
  transition: all 0.1s linear;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(8px + (20 - 8) * ((100vw - 320px) / (1920 - 320)));

  @media (min-width: 1200px) and (max-width: 1600px) {
    width: calc(110px + (140 - 110) * ((100vw - 1200px) / (1600 - 1200)));
  }
}

.depth .card h5 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));

  @media (min-width: 1200px) and (max-width: 1600px) {
    font-size: 16px;
  }
}

#fundamental .depth .card img {
  width: calc(40px + (54 - 40) * ((100vw - 320px) / (1920 - 320)));
  object-fit: cover;

  @media (min-width: 1200px) and (max-width: 1600px) {
    width: 40px;
  }
}

#fundamental .depth .card:hover {
  box-shadow: 16px 23px 38px 1px rgba(var(--black), 0.1);
}

@media (min-width: 575px) and (max-width: 1199px) {
  #fundamental .depth .card {
    width: calc(100px + (124 - 100) * ((100vw - 575px) / (1199 - 575)));
    padding: calc(8px + (12 - 8) * ((100vw - 575px) / (1199 - 575)));
    border-radius: 14px;
    gap: calc(6px + (10 - 6) * ((100vw - 575px) / (1199 - 575)));
  }

  .depth .card h5 {
    font-size: calc(14px + (16 - 14) * ((100vw - 575px) / (1199 - 575)));
    line-height: 1.25;
  }

  #fundamental .depth .card img {
    width: calc(30px + (42 - 30) * ((100vw - 575px) / (1199 - 575)));
  }
}

/*********************
performance-section
**********************/
.performance-section {
  background: linear-gradient(
    90deg,
    rgb(255 204 178 / 11%) 0%,
    rgb(254 227 244 / 19%) 49.27%,
    rgba(199, 234, 255, 0.2) 100%
  );
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.performance-section .performace-content .performace-title h2 {
  color: rgba(var(--primary-color), 1);
  font-size: calc(22px + (50 - 22) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  margin-bottom: calc(15px + (35 - 15) * ((100vw - 320px) / (1920 - 320)));
  max-width: 80%;
}

.performance-section .performace-content p {
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: calc(8px + (20 - 8) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(var(--subtext-color), 1);
}

.performance-section .performace-image img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: contain;
}

/************************
    pricing section
*************************/
.pricing-table thead th,
.pricing-table tbody tr td {
  vertical-align: middle;
  text-align: center;
  border: 1px solid rgba(var(--subtext-color), 0.1);
}

.pricing-table tbody tr td:first-child,
.pricing-table thead tr th:first-child {
  text-align: start;
  padding-left: calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.pricing-table tbody tr td i {
  font-size: 24px;
  color: rgb(var(--secondary-color));
}

.pricing-table tbody tr td i.red {
  color: rgb(var(--red));
}

.pricing-table tbody tr td:last-child i {
  color: rgba(var(--subtext-color), 0.4);
}

.pricing-table thead tr th:last-child {
  background: rgba(89, 144, 196, 0.15);
}

.pricing-table thead tr th:first-child {
  background: rgba(244, 248, 251, 1);
}

.pricing-table thead tr th:nth-child(2) {
  background: rgba(var(--light-pink), 0.3);
  border-right: 1px solid rgba(var(--subtext-color), 0.1);
}

.pricing-table thead tr th:nth-child(3) {
  background: rgba(var(--light-orange), 0.3);
  border-right: 1px solid rgba(var(--subtext-color), 0.1);
}

.pricing-table tbody tr td:nth-child(3) span {
  background: rgba(var(--light-orange), 0.5);
  border-radius: 20px;
  padding: 5px 12px;
}

.pricing-table tbody tr td:nth-child(4) span {
  background: rgba(var(--secondary-color), 0.09);
  border-radius: 20px;
  padding: 5px 12px;
}

.pricing-table thead tr th {
  border-top: none;
  text-transform: uppercase;
}

.pricing-table thead tr th:first-child,
.pricing-table tbody tr td:first-child {
  border-left: none;
}

.pricing-table thead tr th:last-child,
.pricing-table tbody tr td:last-child {
  border-right: none;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.table-box {
  border: 1px solid rgba(var(--subtext-color), 0.1);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.pricing-table {
  margin-bottom: 0;
}

.pricing-table tbody tr td {
  font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 400;
  padding-block: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.pricing-table thead tr th {
  padding-block: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  font-size: calc(17px + (18 - 17) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1;
  width: 382px;
  min-width: 240px;
}

.pricing-table tbody tr td svg {
  width: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
  height: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-right: 6px;
}

.pricing-table thead tr th div {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pricing-table thead tr th svg {
  width: calc(22px + (28 - 22) * ((100vw - 320px) / (1920 - 320)));
  height: calc(22px + (28 - 22) * ((100vw - 320px) / (1920 - 320)));
}

/************************
    steps section
*************************/
.steps-section .steps-content p {
  color: rgb(var(--subtext-color));
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.8;
}

.steps-section .btn svg,
.mobile-section .btn svg,
footer .btn svg,
.btn svg {
  width: 16px;
  height: 8px;
  /* fill:rgb(var(--white)); */
  /* margin-top: 2px; */
}

.steps-section .btn,
footer .buy-btn,
.mobile-section .btn,
footer .buy-btn:hover {
  background-color: rgb(var(--primary-color));
  color: rgb(var(--white));
  width: fit-content;
  padding-inline: 20px;
}

.steps-section .steps-content .install-steps {
  padding-block: calc(20px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.steps-section .steps-content .install-steps h2 {
  font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
  color: rgb(var(--secondary-color));
  font-weight: 600;
  margin-bottom: calc(12px + (30 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.steps-section .steps-content .install-steps ol {
  gap: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.steps-section .steps-content .install-steps ol li {
  border: none;
  counter-increment: step;
  display: flex;
  gap: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
  align-items: center;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  color: rgb(var(--primary-color));
  transition: color 0.3s ease-in-out;
  padding-left: 0;
}

.steps-section .steps-content .install-steps ol li span {
  background: linear-gradient(
    90deg,
    rgba(var(--secondary-color), 0.05) 80%,
    rgba(var(--white), 0) 100%
  );
  border-radius: 20px;
  padding: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)))
    calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  position: absolute;
  left: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1;
}

.steps-section .steps-content .install-steps ol li.active span {
  color: rgb(var(--secondary-color), 1);
  background: linear-gradient(
    90deg,
    rgba(var(--secondary-color), 0.09) 80%,
    rgba(var(--secondary-color), 0) 100%
  );
  border: none;
}

.steps-section .steps-content .install-steps ol li.active {
  margin-top: 0;
  background: transparent;
}

.steps-section .steps-content .install-steps ol li::before {
  content: counter(step, decimal-leading-zero);
  border-radius: 50%;
  width: calc(24px + (30 - 24) * ((100vw - 320px) / (1920 - 320)));
  height: calc(24px + (30 - 24) * ((100vw - 320px) / (1920 - 320)));
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: calc(10px + (12 - 10) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: rgb(var(--white));
  transition: background-color 0.3s ease-in-out;
  background-color: rgba(var(--primary-color), 1);
  z-index: 1;
}

.steps-section .steps-content .install-steps ol li.active::before {
  background: rgba(var(--secondary-color), 1);
}

/* .steps-section .steps-content .install-steps ol li::after{
  content: "";
  position: absolute;
  left: calc(19px + (30 - 19) * ((100vw - 320px) / (1920 - 320)));
  top: calc(24px + (32 - 24) * ((100vw - 320px) / (1920 - 320)));
  width: 2px;
  height: 100%;
  background-color: rgba(var(--secondary-color),0.1);
} */

.steps-section .steps-content .install-steps ol li:last-child::after {
  display: none;
}

.steps-section .image-scroll-wrapper {
  padding: calc(4px + (10 - 4) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 14px;
  background: linear-gradient(
    270deg,
    rgba(var(--light-orange), 0.4) 0%,
    rgba(var(--light-pink), 0.4) 53.27%,
    rgba(var(--secondary-color), 0.08) 100%
  );
  border: 1px solid rgba(var(--secondary-color), 0.02);
  margin-inline: -24px calc(10px + (50 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.steps-section .image-scroll-wrapper .image-scroll {
  background-image: url("../images/home-page.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(215px + (695 - 215) * ((100vw - 320px) / (1920 - 320)));
  transition: 11s linear;
}

.steps-section .image-scroll-wrapper .image-scroll:hover {
  background-position: bottom;
}

@media (max-width: 768px) {
  .steps-section .image-scroll-wrapper .image-scroll {
    animation: autoScrollBg 20s linear infinite;
  }

  .steps-section .image-scroll-wrapper .image-scroll:hover {
    background-position: top;
    /* disable hover */
  }
}

.steps-section .steps-title {
  font-size: calc(46px + (150 - 46) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  opacity: 0.1;
  transform: rotate(270deg);
  background: linear-gradient(
    180deg,
    rgb(var(--secondary-color)) 13.67%,
    rgba(var(--secondary-color), 0) 100%
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  position: absolute;
  top: calc(84px + (270 - 84) * ((100vw - 320px) / (1920 - 320)));
  right: calc(-66px + (-262 - -66) * ((100vw - 320px) / (1920 - 320)));
}

.steps-section .hero-counter .counter-box .icon {
  height: calc(34px + (70 - 34) * ((100vw - 320px) / (1920 - 320)));
  width: calc(34px + (70 - 34) * ((100vw - 320px) / (1920 - 320)));
  background: url("/assets/images/home-bg.png") no-repeat center center/cover;
}

.steps-section .hero-counter .counter-box {
  flex-direction: column;
  text-align: center;
  padding-block: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.steps-section .hero-counter .counter-box .counter {
  font-size: calc(14px + (22 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
}

.steps-section .hero-counter .counter-box .icon i {
  font-size: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.steps-section .hero-counter .counter-box p {
  font-size: calc(12px + (16 - 12) * ((100vw - 320px) / (1920 - 320)));

  @media (max-width: 575px) {
    display: none;
  }
}

@media (max-width: 991px) {
  .steps-section .steps-content {
    padding-inline: 16px;
  }

  .steps-section .steps-title {
    right: calc(-64px + (-144 - -64) * ((100vw - 320px) / (992 - 320)));
    height: fit-content;
  }
}

.steps-section .hero-counter {
  padding: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.hero-counter {
  box-shadow: 0 0 6px 0 rgba(var(--secondary-color), 0.5);
  border-radius: 16px;
  padding: 30px;
  background: rgba(var(--white), 0.5);
}

.hero-counter .counter-box {
  padding-block: 30px;
  border-bottom: 1px solid rgba(var(--primary-color), 0.1);
  display: flex;
  gap: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
  align-items: center;
}

.hero-counter .counter-box .counter {
  font-size: 34px;
  font-weight: 600;
  color: rgba(var(--primary-color), 0.9);
}

.hero-counter .counter-box p {
  color: rgb(var(--subtext-color));
  font-size: 18px;
}

.hero-counter .counter-box .icon {
  background: rgba(var(--secondary-color), 0.08);
  border-radius: 10px;
  height: 75px;
  width: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-counter .counter-box .icon i {
  color: rgb(var(--secondary-color));
  font-size: 40px;
}

.hero-counter div:first-child {
  padding-top: 0;
}

.hero-counter div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/************************
    features section
*************************/
.features-section .feature-content {
  margin-bottom: 50px;
  text-align: center;

  @media (max-width: 991px) {
    margin-bottom: 16px;
  }
}

.features-section .feature-content h2 {
  line-height: 1;
}

.features-section p {
  color: rgb(var(--subtext-color));
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.6;

  @media (max-width: 575px) {
    line-height: 1.5;
  }
}

.features-wrapper {
  display: flex;
  flex-direction: column;
  gap: calc(12px + (30 - 12) * ((100vw - 320px) / (1920 - 320)));
  flex-wrap: wrap;
  max-height: calc(994px + (2300 - 994) * ((100vw - 320px) / (1920 - 320)));
  width: calc(100% - calc(24px + (60 - 24) * ((100vw - 320px) / (1920 - 320))));

  @media (max-width: 991px) {
    max-height: 2200px;
    width: calc(
      100% - calc(12px + (30 - 12) * ((100vw - 320px) / (1920 - 320)))
    );
  }

  @media (max-width: 575px) {
    max-height: unset;
    width: 100%;
    gap: 12px;
  }
}

.features-section .features-box:has(.features.features-top) {
  width: 100%;
}

.features-section .features-box {
  position: relative;
  width: 33.33%;
  border-radius: 16px;
  padding: 2px;
  overflow: hidden;
  background: url("/assets/images/features/feature-bg-1.png") no-repeat center
    center/cover;
  border-radius: 16px;
  padding: calc(12px + (30 - 12) * ((100vw - 320px) / (1920 - 320)));

  @media (max-width: 991px) {
    width: 50%;
  }

  @media (max-width: 575px) {
    width: 100%;
  }
}

.features-section .features-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 8px;
  background: linear-gradient(
    270deg,
    rgba(var(--light-orange), 0.4) 0%,
    rgba(var(--light-pink), 0.4) 53.27%,
    rgba(var(--secondary-color), 0.08) 100%
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* .features-section .features-box {
  width: 33.33%;
  background: url("/assets/images/features/feature-bg-1.png") no-repeat center
    center/cover;
  border-radius: 16px;
  border: 2px solid rgba(var(--light-orange), 0.3);
  @media (max-width: 991px) {
    width: 50%;
  }
  @media (max-width: 575px) {
    width: 100%;
  }
}

.features-section .features-wrapper .features-box:last-child {
  background: url("/assets/images/features/video-bg.png") no-repeat center
    center/cover;
  bottom: none;
} */

.features-section .features-box .content-top {
  margin-bottom: calc(12px + (30 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.features-section .features-box .margin-end {
  margin-right: calc(-10px + (-26 - -10) * ((100vw - 320px) / (1920 - 320)));
}

.features-section .features-box .margin-start {
  margin-left: calc(-10px + (-26 - -10) * ((100vw - 320px) / (1920 - 320)));
}

.features-section .features-box .features {
  border-radius: 14px;
  text-align: center;
}

.features-section .features-content-wrapper > div:first-child {
  margin-bottom: calc(12px + (30 - 12) * ((100vw - 320px) / (1920 - 320)));
  gap: calc(12px + (30 - 12) * ((100vw - 320px) / (1920 - 320)));
  width: calc(100% - calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320))));

  @media (max-width: 767px) {
    flex-direction: column;
    width: 100% !important;
  }
}

.features-section .features .image {
  display: block;
  overflow: hidden;
  text-align: center;
}

.features-section .features .feature-title {
  color: rgb(var(--text-color));
  font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  line-height: 1;
  margin-bottom: calc(4px + (8 - 4) * ((100vw - 320px) / (1920 - 320)));
}

.shopping-video-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  gap: 4px;
}

.shopping-video {
  flex: 1;
  min-width: 0;
}

.shopping-video.active {
  flex: 1.45;
}

.video-wrapper {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/5;
  border-radius: calc(8px + (10 - 8) * ((100vw - 320px) / (1920 - 320)));
  overflow: hidden;
  position: relative;
  padding: calc(2px + (4 - 2) * ((100vw - 320px) / (1920 - 320)));
  border: 1px solid rgba(var(--light-orange), 1);
  background: rgba(var(--light-orange), 0.2);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(6px + (8 - 6) * ((100vw - 320px) / (1920 - 320)));
}

.product {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
}

.shopping-video.active .product {
  right: 12px;
  left: 12px;
  bottom: 12px;
}

.shopping-video .view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 3px;
  background: rgba(var(--secondary-color), 0.2);
  border-radius: 50%;
}

.shopping-video .view .play-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(var(--secondary-color), 1);
  color: rgb(var(--white));
  display: flex;
  justify-content: center;
  align-items: center;
}

.shopping-video .view .play-btn i {
  font-size: 12px;
}

.shopping-video.active .view {
  transform: scale(1.4) translate(-50%, -50%);
}

/************************
    ready to us   section
*************************/

.ready-sections span {
  display: block;
  margin-bottom: calc(10px + (24 - 10) * ((100vw - 320px) / (1920 - 320)));
  padding: calc(3px + (6 - 3) * ((100vw - 320px) / (1920 - 320)));
  border: 1px solid rgba(var(--secondary-color), 0.02);
  border-radius: 10px;
  background: linear-gradient(
    270deg,
    rgba(var(--light-orange), 0.4) 0%,
    rgba(var(--light-pink), 0.4) 53.27%,
    rgba(var(--secondary-color), 0.08) 100%
  );
}

.ready-sections .use-title {
  text-align: center;
  position: relative;
}

.ready-sections .use-title h2 {
  font-size: calc(80px + (150 - 80) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 800;
  background: linear-gradient(
    180deg,
    rgb(var(--secondary-color)) 13.67%,
    rgba(var(--secondary-color), 0) 100%
  );
  background-clip: text;
  opacity: 0.4;
  -webkit-text-fill-color: transparent;
  line-height: 0.8;
  position: relative;
  z-index: -1;
}

.ready-sections .use-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 80px;
  height: 5px;
  border-radius: 20px;
  background-color: rgba(var(--secondary-color), 1);
}

.ready-sections .use-title p {
  font-size: calc(20px + (46 - 20) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  color: rgb(var(--primary-color));
  margin-bottom: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin-top: -50px;
}

.ready-sections span img {
  border-radius: 5px;
}

.ready-sections div {
  text-align: center;
}

.ready-sections .ready-section-list div {
  padding-inline: calc(5px + (12 - 5) * ((100vw - 320px) / (1920 - 320)));
}

@media (max-width: 1199px) and (min-width: 992px) {
  .ready-sections .use-title p {
    margin-top: -35px;
  }

  .ready-sections .use-title::after {
    bottom: -5px;
  }
}

@media (max-width: 991px) {
  .ready-sections .use-title p {
    margin-top: -40px;
  }

  .ready-sections .use-title::after {
    bottom: -4px;
  }
}

@media (max-width: 420px) {
  .ready-sections .use-title p {
    margin-top: -30px;
  }

  .ready-sections .use-title::after {
    bottom: -6px;
  }
}

/**********************
product details section
************************/

/************************
    pages section
*************************/
.pages-box .heading-content {
  align-items: center;
  margin-bottom: calc(26px + (50 - 26) * ((100vw - 320px) / (1920 - 320)));

  @media (max-width: 1400px) {
    text-align: center;
  }
}

.pages-box ul {
  justify-self: end;
  margin-right: 0;
  border-radius: calc(10px + (16 - 10) * ((100vw - 320px) / (1920 - 320)));
  border: 1px solid rgba(var(--subtext-color), 0.3);
  padding: calc(3px + (6 - 3) * ((100vw - 320px) / (1920 - 320)));
  width: fit-content;

  @media (max-width: 1400px) {
    justify-self: center;
    margin-top: calc(14px + (20 - 14) * ((100vw - 320px) / (1400 - 320)));
  }

  @media (max-width: 767px) {
    justify-self: start;
    /* padding-bottom: 8px; */
    overflow: auto;
    width: 100%;
    flex-wrap: nowrap;
  }
}

.pages-box ul li .nav-link {
  border-radius: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
  border: 1px solid transparent;
  padding: calc(10px + (16 - 10) * ((100vw - 320px) / (1920 - 320)))
    calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
  text-transform: uppercase;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1;
  font-weight: 600;
  color: rgb(var(--text-color));
  white-space: nowrap;
}

.pages-box ul li .nav-link.active {
  background: rgba(var(--secondary-color), 0.1);
  color: rgb(var(--secondary-color));
}

.tab-pane .product-image-box {
  gap: 20px;
  justify-content: center;
}

.tab-pane .product-image-box .product-image {
  padding: 6px;
  background: rgba(var(--secondary-color), 0.2);
  border-radius: 20px;
  width: calc(33% - 10px);
}

.tab-pane .product-image img {
  border-radius: 16px;
}

.tab-content ul {
  margin-bottom: 30px;
  justify-content: center;
  flex-wrap: nowrap;

  @media (max-width: 767px) {
    overflow-x: scroll;
    padding-bottom: 10px;
    justify-content: flex-start;
  }
}

.tab-content ul li {
  white-space: nowrap;
}

.tab-content .page-content-wrapper .page-content {
  border: 1px solid rgba(var(--secondary-color), 0.02);
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(
    270deg,
    rgba(var(--light-orange), 0.4) 0%,
    rgba(var(--light-pink), 0.4) 53.27%,
    rgba(var(--secondary-color), 0.08) 100%
  );
  backdrop-filter: blur(4px);
}

.tab-content .page-content-wrapper .page-content .page-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.tab-content .page-content-wrapper .page-content .page-content-overlay {
  transition: all 0.3s ease;
}

.tab-content .page-content-wrapper .page-content:hover .page-image img {
  transform: scale(1.03);
}

.tab-content .page-content-wrapper .page-content:hover .page-content-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--black), 0.2);
}

.tab-content .page-content-wrapper .page-content:hover .btn {
  opacity: 1;
}

.tab-content .page-content-wrapper .page-content .btn {
  position: absolute;
  top: 50%;
  background: rgb(var(--secondary-color));
  color: rgb(var(--white));
  padding: calc(8px + (12 - 8) * ((100vw - 320px) / (1920 - 320)))
    calc(6px + (14 - 6) * ((100vw - 320px) / (1920 - 320)));
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.tab-content
  .page-content-wrapper
  .swiper-wrapper:has(.swiper-slide:nth-child(2):last-child) {
  justify-content: center;
}

.tab-content .page-content-wrapper .page-content img {
  aspect-ratio: 53/50;
  transition: all 0.5s ease-in-out;
  border-radius: 6px;
}

.tab-content .page-content-wrapper .page-content ~ h3 {
  margin-top: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
  font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  text-align: center;
  color: rgb(var(--secondary-color));
}

.pages-box .swiper-pagination-bullet {
  width: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
  height: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
}

/************************
    header footer style section
*************************/
.header-footer-section .pages-box .heading-content {
  text-align: left;

  @media (max-width: 767px) {
    text-align: center;
  }
}

.header-footer-section .pages-box .heading-content ul {
  justify-self: end;

  @media (max-width: 767px) {
    width: fit-content;
    justify-self: center;
  }
}

.header-footer-section .page-content {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgb(100 100 111 / 9%) 0px 5px 29px 0px;
}

.header-footer-section .page-content img {
  border-radius: calc(4px + (8 - 4) * ((100vw - 320px) / (1920 - 320)));
}

.header-footer-section .style-image-box {
  display: flex;
  flex-direction: column;
  gap: calc(10px + (50 - 10) * ((100vw - 320px) / (1920 - 320)));
}

/************************
    footer section
*************************/
footer {
  background: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background-color: rgba(var(--primary-color), 1); */
}

footer .footer-content {
  padding-block: calc(50px + (100 - 50) * ((100vw - 320px) / (1920 - 320)));
}

footer .footer-content h2 {
  color: rgba(var(--white), 1);
  font-size: calc(22px + (48 - 22) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: calc(16px + (30 - 16) * ((100vw - 320px) / (1920 - 320)));
}

footer .footer-content span {
  display: block;
  color: rgba(var(--secondary-color), 1);
  /* font-family: cursive; */
  font-weight: 500;
  font-size: calc(34px + (60 - 34) * ((100vw - 320px) / (1920 - 320)));
}

footer .footer-content p {
  color: rgba(var(--subtext-color), 1);
  margin-bottom: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}

footer .footer-content .btn-box .demo-btn {
  background-color: rgba(var(--white), 1);
}

footer .copy-content {
  padding-block: 20px calc(20px + (50 - 20) * ((100vw - 320px) / (1920 - 320)));
  border-top: 1px solid rgba(var(--subtext-color), 0.3);
  text-align: center;
  color: rgb(var(--subtext-color));
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}

/************************
    common css
*************************/
p.sub-heading {
  color: rgb(var(--secondary-color));
  font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 600;
  line-height: 1.6;
  /* margin-bottom: calc(2px + (10 - 2) * ((100vw - 320px) / (1920 - 320))); */
}

.swiper {
  padding-bottom: 34px;
}

.swiper .swiper-pagination {
  bottom: -6px;

  @media (max-width: 575px) {
    bottom: 5px;
  }
}

.swiper .swiper-pagination-bullet-active {
  background-color: rgb(var(--secondary-color));
}

/************************
    hero section
*************************/

.home-slider {
  margin-top: calc(50px + (100 - 50) * ((100vw - 320px) / (1920 - 320)));
}

.home-content-box .home-content {
  width: 60%;
  margin-inline: auto;
  text-align: center;

  @media (max-width: 1236px) {
    width: 68%;
  }

  @media (max-width: 575px) {
    width: 90%;
  }
}

#home .home-content-box .home-content h1 {
  font-weight: 600;
  font-size: calc(24px + (60 - 24) * ((100vw - 320px) / (1920 - 320)));
  line-height: calc(35px + (85 - 35) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: calc(5px + (10 - 5) * ((100vw - 320px) / (1920 - 320)));
}

.home-content-box .home-content .sub-heading {
  font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 500;
  color: rgba(var(--secondary-color), 1);
  letter-spacing: 1.5px;
  margin-bottom: 0;
}

#home .home-content-box .home-content .description {
  font-weight: 400;
  letter-spacing: 0.6px;
  font-size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(var(--subtext-color), 1);
}

.home-content-box .home-content .btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
  margin-top: calc(26px + (40 - 26) * ((100vw - 320px) / (1920 - 320)));
}

.home-content-box .home-content .btn-box a {
  width: fit-content;
  font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.home-content-box .home-content .btn-box .demo-btn {
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
}

.home-content-box .home-content .btn-box .demo-btn:hover {
  background-color: transparent;
  border: 1px solid rgba(var(--primary-color), 1);
  color: rgba(var(--primary-color), 1);
}

.home-content-box .home-content .btn-box .demo-btn:hover svg {
  filter: invert(1);
}

.home-content-box .home-content .btn-box .outline-btn {
  border: 1px solid rgba(var(--primary-color), 1);
}

.home-content-box .home-content .btn-box .outline-btn:hover {
  border-color: transparent;
  background-color: rgba(var(--primary-color), 1);
  color: rgba(var(--white), 1);
}

.home-content .btn-box .outline-btn:hover svg {
  filter: invert(1);
}

.home-content .btn-box .outline-btn svg {
  width: 16px;
  height: 18px;
}

.home-content .btn-box .demo-btn svg {
  width: 25px;
  height: 8px;
}

.home-section .custom-container {
  max-width: 100%;
  padding-inline: 0;
}

.home-slider {
  overflow: hidden;
  padding-bottom: 0;
}

.home-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.home-slider .swiper-slide {
  width: auto !important;
}

.home-slider .swiper-slide {
  border: 1px solid rgba(var(--secondary-color), 0.02);
  padding: 10px;
  background: linear-gradient(
    270deg,
    rgba(var(--light-orange), 0.4) 0%,
    rgba(var(--light-pink), 0.4) 53.27%,
    rgba(var(--secondary-color), 0.08) 100%
  );
  border-radius: 8px;
  position: relative;
  /* bottom: -5px; */
}

.home-slider .swiper-slide.hidde-slide {
  position: relative;
  /* bottom: -85px; */
}
.home-slider .swiper-slide.hidde-slide img {
  width: calc(250px + (520 - 250) * ((100vw - 320px) / (1920 - 320)));
}

.home-slider .swiper-slide img {
  background: white;
  border-radius: 6px;
  width: calc(280px + (600 - 280) * ((100vw - 320px) / (1920 - 320)));
}

.home-content-box {
  margin-top: calc(50px + (100 - 50) * ((100vw - 320px) / (1920 - 320)));
}

.home-slider .swiper-wrapper {
  align-items: end;
}

/* 2 home banner */
#home {
  height: 100%;
  background: url("/assets/images/home-bg.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 0px;
}

.hero-banner {
  margin-block: 40px;
  position: relative;
}

.slide-content {
  text-align: center;
  position: relative;
  background: linear-gradient(240deg, #ffccb2 0%, #fee3f4 49.27%, #c7eaff 100%);
  padding: 6px;
  border-radius: 28px;
  width: 986px;
  margin: 0 auto;
}

.slide-content .banner-content {
  background-color: #ecf7ff;
  overflow: hidden;
  border-radius: 24px;
}

.mobile-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  overflow: hidden;
}

#home .banner-title {
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 2px;
  padding-top: 20px;
  opacity: 0;
  transform: translateY(-60px);
  transition: none;
  font-weight: 700;
  background-clip: text;
  background-image: linear-gradient(
    0deg,
    rgba(var(--secondary-color), 0.5),
    rgba(var(--white), 0)
  );
  color: transparent;
  text-align: center;
}

#home h1 {
  font-size: 55px;
}

#home h1 span {
  color: rgb(var(--secondary-color));
}

/* #home h1 ~ p {
  font-size: 18px;
  margin-block: 20px;
  color: rgb(var(--subtext-color));
} */

#home h1 ~ .demo-btn {
  background: rgb(var(--primary-color));
  width: fit-content;
  color: rgb(var(--white));
  font-size: 20px;
  padding: 16px 40px;
  margin-top: 50px;
}

#home .marquee-wrapper {
  position: absolute;
  bottom: -70px;
  z-index: -1;
  overflow: hidden;
  opacity: 0.2;
}

#home .marquee-wrapper .marquee {
  font-size: 200px;
  line-height: 1;
  color: rgba(var(--secondary-color), 0.3);
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
  animation: Marquee 30s linear infinite;
}

.swiper-slide-active .banner-title {
  animation: titleIn 0.8s ease forwards;
}

.swiper-slide:not(.swiper-slide-active) .banner-title {
  animation: titleReset 0.5s ease forwards;
}

.banner-img {
  opacity: 0;
  width: 100%;
  margin: auto;
  transform: scale(1);
  transition:
    opacity 1s ease,
    transform 1s ease;
  border-radius: 24px;
}

.swiper-slide-active .banner-img {
  opacity: 1;
}

.bannerThumbs {
  overflow: unset;
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}

.bannerThumbs .swiper-wrapper {
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(
    0deg,
    #f4f8fbbd 0.06%,
    #f4f8fbee,
    #c7e9ff4a 112.08%
  );
  backdrop-filter: blur(4px);
  padding: 10px;
  border-radius: 20px;
  gap: 14px;
}

.bannerThumbs .swiper-slide {
  opacity: 1;
  cursor: pointer;
  transition: 0.3s;
  width: fit-content !important;
  background-color: rgba(var(--secondary-color), 0.2);
  padding: 4px;
  border-radius: 12px;
  margin-right: 0 !important;
}

.bannerThumbs .swiper-slide img {
  width: 70px;
  border-radius: 10px;
}

.bannerThumbs .swiper-slide-thumb-active {
  transform: scale(1.1);
  transform-origin: bottom;
  transition: all 0.3s ease;
  /* border: 1px solid rgba(var(--secondary-color), 0.2); */
}

.slide-item-content {
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: rgb(var(--white));
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 4px inset;
  padding: 16px;
  border-radius: 50px;
}

.slide-item-content i {
  /* background: rgba(var(--secondary-color),0.1); */
  background: url("/assets/images/home-bg.png") no-repeat center center/cover;
  border-radius: 50%;
  font-size: 30px;
  color: rgba(var(--primary-color), 0.9);
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-item-content p {
  color: rgb(var(--subtext-color));
}

/* mobile section */
.mobile-section-wrapper {
  background: linear-gradient(45deg, rgb(89 144 196 / 8%), #ffffff);
}

.mobile-section-box {
  align-items: center;
  justify-content: space-between;

  @media (max-width: 991px) {
    flex-direction: column;
    gap: 40px;

    .col-sm-12 {
      text-align: center;
    }
  }
}

.mobile-section-box h2 {
  font-weight: 600;
}

.mobile-image.mobile-second {
  margin-top: calc(20px + (65 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.mobile-section .mobile-content {
  height: 758px;
  overflow: hidden;

  @media (max-width: 1599px) {
    height: 650px;
  }

  @media (max-width: 1399px) {
    height: 560px;
  }

  @media (max-width: 1199px) {
    height: 480px;
  }

  @media (max-width: 575px) {
    height: 380px;
  }
}

.mobile-section .mobile {
  display: flex;
  flex-direction: row-reverse;
  gap: calc(10px + (30 - 10) * ((100vw - 320px) / (1920 - 320)));
}

@media (max-width: 991px) {
  .mobile-section .mobile {
    justify-content: center;
  }
}

.mobile-section p.description {
  margin-block: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)))
    calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.8;
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.mobile-section .mobile-image {
  position: relative;
  display: inline-block;
}

.mobile-section .mobile-image .img-scroll {
  position: absolute;
  top: 12px;
  left: 13px;
  width: calc(100% - 26px);
  height: calc(100% - 25px);
  background-image: url("../images/mobile/mobile-full.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  border-radius: 20px;
  z-index: 1;
  animation: autoScrollBg 60s ease-in-out infinite alternate;
}

.mobile-section .mobile-image .img-scroll2 {
  position: absolute;
  top: 12px;
  left: 10px;
  width: calc(100% - 13px);
  height: calc(100% - 85px);
  background-image: url("../images/mobile/filter.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  border-radius: calc(2px + (50 - 2) * ((100vw - 991px) / (1920 - 991)));
  z-index: 1;
}

.mobile-section .mobile-image .phone-frame {
  height: calc(450px + (660 - 450) * ((100vw - 991px) / (1920 - 991)));
  width: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.mobile-section .mobile-second .phone-frame {
  height: calc(360px + (530 - 360) * ((100vw - 991px) / (1920 - 991)));
}

.mobile-section .mobile-image .screen {
  position: absolute;
  top: 18px;
  left: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.mobile-section .mobile-image .screen img {
  width: 100%;
  height: auto;
  display: block;
  animation: autoScrollBg 20s linear infinite alternate;
}

@keyframes Marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-110%);
  }
}

@keyframes titleIn {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }

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

@keyframes autoScrollBg {
  0% {
    background-position: top;
  }

  50% {
    background-position: bottom;
  }

  92% {
    background-position: top;
  }

  100% {
    background-position: top;
  }
}

@keyframes titleReset {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(60px);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/************************
    Product Detail Section
*************************/
.product-detail-section {
  background-color: rgba(var(--secondary-color), 0.05);
}

.product-detail-section .pl {
  padding-left: 20px;
}

.product-detail-content .sub-heading {
  color: rgba(var(--secondary-color), 1);
  background: rgba(var(--secondary-color), 0.1);
  border: 1px solid rgba(var(--secondary-color), 0.2);
  padding: calc(6px + (8 - 12) * ((100vw - 320px) / (1920 - 320)))
    calc(12px + (20 - 12) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(var(--secondary-color), 0.05);
}

.product-detail-content .heading {
  color: rgba(var(--primary-color), 1);
  font-weight: 600;
  line-height: 1.2;
  font-size: calc(24px + (48 - 24) * ((100vw - 320px) / (1920 - 320)));
  margin-bottom: calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.product-detail-content .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: calc(14px + (24 - 14) * ((100vw - 320px) / (1920 - 320)));
}

.product-detail-content .feature-list li:last-child {
  margin-bottom: 0;
}

.product-detail-content .feature-list li .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(var(--secondary-color), 1);
}

.product-detail-content .feature-list li .icon svg {
  width: 100%;
  height: 100%;
}

.product-detail-content .feature-list li .text {
  color: rgba(var(--subtext-color), 1);
  font-size: calc(15px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
  line-height: 1.6;
}

.product-detail-content .feature-list li .text strong {
  color: rgba(var(--primary-color), 1);
  font-weight: 600;
}
