/******************
    Variable css
********************/
:root {
  --theme-color: 16, 165, 192;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --title-color: 31, 31, 31;
  --content-color: 136, 136, 136;
  --line-color: 238, 238, 238;
  --box-bg: 250, 250, 250;
  --error-color: 255, 131, 103;
  --accent-color: 71, 161, 229;
  --secondary-color: 236, 178, 56;
  --purple-color: 176, 137, 255;
  --warning-color: 240, 181, 72;
  --danger-color: 255, 139, 139;
  --success-color-2: 45, 217, 187;
  --size: 20px;
  --color: rgba(var(--title-color), 1) ;
}

/************************
    Reset css
***********************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section,
.section-t-space {
  padding-top: calc(20px + 60 * (100vw - 320px) / 1600);
}

.section-b-space {
  padding-bottom: calc(20px + 60 * (100vw - 320px) / 1600);
}

.px-20 {
  padding-inline: 20px;
}

.mx-20 {
  margin-inline: 20px;
}

.theme-color {
  color: rgba(var(--theme-color), 1) !important;
}

.theme-bg {
  background-color: rgba(var(--theme-color), 1) !important;
}

.title-color {
  color: rgba(var(--title-color), 1) !important;
}

.qr-btn {
  position: relative;
}
.qr-btn .qr-code {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  background-color: rgba(var(--white), 1);
  border: 1px solid black;
  border-radius: 10px;
  padding: 12px;
  z-index: 3;
}
@media (max-width: 1350px) {
  .qr-btn .qr-code {
    display: none;
  }
}

/************************
    Typography css
***********************/
body {
  position: relative;
  font-family: "DM Sans", sans-serif;
  background-blend-mode: screen;
  color: rgba(var(--title-color), 1);
  background: rgba(var(--white), 1);
}

body::-webkit-scrollbar {
  scrollbar-width: none;
  width: 0px;
}

/* Width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #999;
}

h1 {
  font-size: calc(20px + 30 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

h2 {
  font-size: calc(24px + 18 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

h3 {
  font-size: calc(18px + 12 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

h4 {
  font-size: calc(16px + 8 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

h5 {
  font-size: calc(15px + 8 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

h6 {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

p {
  font-size: calc(13px + 5 * (100vw - 320px) / 1600);
  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: 1460px;
    margin-inline: auto;
  }
}

/*********************
    Button css
**********************/
.btn {
  padding: calc(10px + 4 * (100vw - 320px) / 1600) calc(18px + 12 * (100vw - 320px) / 1600) calc(10px + 4 * (100vw - 320px) / 1600);
  /* display: flex; */
  align-items: center;
  gap: 5px;
  line-height: 1;
  border-radius: 10px;
  font-weight: 500;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
}
.btn.solid-btn {
  color: rgba(var(--white), 1);
  background-color: rgba(var(--theme-color), 1);
}
.btn.solid-btn:active {
  color: rgba(var(--white), 1) !important;
  background-color: rgba(var(--theme-color), 1) !important;
}
.btn.outline-btn {
  color: rgba(var(--theme-color), 1);
  background-color: transparent;
  border: 1px solid rgba(var(--theme-color), 1);
}
.btn.outline-btn:hover {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
}
.btn.outline-btn:active {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
  border-color: rgba(var(--theme-color), 1);
}
.btn.theme-btn {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
.btn.theme-btn:hover {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
}
.btn.theme-btn:active {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
  border-color: rgba(var(--theme-color), 1);
}
.btn.success-btn {
  background-color: rgba(var(--success-color), 1);
  color: rgba(var(--white), 1);
  display: inline-flex;
}
.btn.success-btn .icon {
  --color: rgba(var(--white), 1);
}
.btn.portfolio-btn {
  color: rgba(var(--theme-color), 1) !important;
  background-color: rgba(var(--white), 1) !important;
}
.btn.portfolio-btn:hover {
  color: rgba(var(--theme-color), 1) !important;
  background-color: rgba(var(--white), 1) !important;
}
.btn.portfolio-outline-btn {
  color: rgba(var(--white), 1);
  background-color: transparent;
  border: 1px solid rgba(var(--white), 1);
}
.btn.portfolio-outline-btn:hover {
  background-color: rgba(var(--white), 1) !important;
  color: rgba(var(--theme-color), 1) !important;
}
.btn.portfolio-outline-btn.btn-wide {
  padding: calc(5px + 5 * (100vw - 320px) / 1600) calc(20px + 20 * (100vw - 320px) / 1600);
}

/***************************
    animation css
****************************/
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes marquee-reverse {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes appear {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 100%);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
/***************************
    Title css
****************************/
.title {
  text-align: center;
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
}
.title span {
  display: inline-block;
  font-weight: 500;
  line-height: 1.2;
  font-family: "Caveat", cursive;
  line-height: 0.96;
  padding-bottom: 10px;
  font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(var(--theme-color), 1);
  position: relative;
}
.title span::after {
  position: absolute;
  content: "";
  width: 60%;
  height: calc(3px + (4 - 3) * ((100vw - 320px) / (1920 - 320)));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(240, 181, 72);
  border-radius: 10px;
  overflow: hidden;
}
.title h2 {
  margin-top: 10px;
  font-weight: 600;
  font-size: calc(20px + 22 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
}
.title h3 {
  margin-bottom: 10px;
  margin-top: 4px;
  font-size: calc(18px + 10 * (100vw - 320px) / 1600);
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
}
.title p {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
  font-weight: 400;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  line-height: 1.5;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 1199px) {
  .title p {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .title p {
    width: 100%;
  }
}
.title .small-title {
  font-family: "caveat", sans-serif;
  color: rgba(var(--secondary-color), 1);
  font-size: calc(14px + 6 * (100vw - 320px) / 1600);
}

/************************
    header section
*************************/
header {
  position: absolute;
  width: 100%;
  padding-block: calc(10px + 10 * (100vw - 320px) / 1600);
  transition: all 0.6s ease-in-out;
  z-index: 3;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
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;
}

.navbar {
  justify-content: unset;
  align-items: center;
  background: white;
  padding: calc(10px + 4 * (100vw - 320px) / 1600) calc(10px + 8 * (100vw - 320px) / 1600);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--theme-color), 0.2);
}
.navbar .btn {
  margin-left: auto;
  padding: calc(8px + 4 * (100vw - 320px) / 1600) calc(16px + 12 * (100vw - 320px) / 1600) calc(8px + 4 * (100vw - 320px) / 1600);
}
.navbar .logo {
  height: calc(26px + 14 * (100vw - 320px) / 1600);
}
.navbar .navbar-toggler {
  padding: 0;
  border: 0;
}
.navbar .navbar-toggler.collapse .navbar-toggler-icon .icon {
  --color: rgba(var(--title-color), 1);
}
.navbar .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: calc(10px + 10 * (100vw - 320px) / 1600);
  background-image: none;
}
.navbar .navbar-toggler .navbar-toggler-icon .icon {
  --color: rgba(var(--title-color), 1);
  --size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-collapse .close-box {
  display: none;
}
.navbar .navbar-collapse .bg-overlay {
  display: none;
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: fixed;
    top: 0;
    left: -300px;
    width: calc(240px + 120 * (100vw - 320px) / 671);
    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:has(#body-overlay.show) body {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    position: fixed;
    z-index: 3;
    top: 0;
    transition: 0.5s;
  }
  .navbar .navbar-collapse .navbar-nav {
    padding: 14px 20px;
    height: 100%;
  }
  .navbar .navbar-collapse .close-box {
    background-color: rgba(var(--line-color), 0.5);
    font-weight: 600;
    font-size: 17px;
    line-height: 1;
    border-bottom: 1px solid rgba(var(--line-color), 1);
    display: flex;
    align-items: center;
    border: unset;
    color: #222;
    text-align: unset;
    width: 100%;
    padding: 14px 20px;
  }
  .navbar .navbar-collapse .close-box i {
    --color: rgba(var(--title-color), 1);
    --size: 24px;
    transform: rotate(45deg);
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .navbar .navbar-collapse .close-box {
    display: block;
  }
}
.navbar .navbar-nav {
  display: flex;
  gap: calc(4px + 16 * (100vw - 320px) / 1600);
}
.navbar .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  color: rgba(var(--title-color), 1);
  font-weight: 500;
  font-size: calc(15px + 1 * (100vw - 320px) / 1600);
  padding: 0;
}
.navbar .navbar-nav .nav-item .nav-link:active {
  color: rgba(var(--theme-color), 1);
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: rgba(var(--theme-color), 1);
}
.navbar .navbar-nav .nav-item .nav-link.book {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
  animation: ring 4s 0.7s ease-in-out infinite;
}
.navbar .navbar-nav .nav-item .nav-link.book .iconsax {
  --color: rgba(var(--theme-color), 1);
  --size: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
}
@keyframes ring {
  3% {
    transform: translate(9px);
  }
  6% {
    transform: translate(-9px);
  }
  8% {
    transform: translate(6px);
  }
  10% {
    transform: translate(-6px);
  }
  13% {
    transform: translate(3px);
  }
  16%, 100% {
    transform: translate(0);
  }
}
.navbar .navbar {
  background: transparent !important;
  border: none !important;
  padding-bottom: 0;
  padding-top: calc(13px + 13 * (100vw - 320px) / 1600);
}
.navbar .navbar .navbar-toggler {
  border: unset;
  box-shadow: unset;
  padding: 0;
  font-size: calc(18px + 6 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 1);
  margin-right: calc(8px + 7 * (100vw - 320px) / 1600);
}
.navbar .navbar-nav {
  gap: calc(15px + 20 * (100vw - 1200px) / 720);
}
@media (max-width: 1199px) {
  .navbar .navbar-nav {
    gap: calc(7px + 8 * (100vw - 320px) / 879);
  }
}

/***********************
    home section
************************/
.home-wrapper {
  background: linear-gradient(92.81deg, rgba(26, 174, 201, 0.03) -21.91%, rgba(14, 109, 233, 0.06) 104.29%);
  position: relative;
  height: calc(100vh - (20px + 20 * (100vw - 320px) / 1600));
}
@media screen and (max-width: 1600px) {
  .home-wrapper {
    height: calc(94vh - (20px + 14 * (100vw - 320px) / 1280));
  }
}
@media screen and (max-width: 1200px) {
  .home-wrapper {
    height: calc(80vh - (20px + 14 * (100vw - 320px) / 880));
  }
}
@media screen and (max-width: 991px) {
  .home-wrapper {
    height: 100%;
  }
}
.home-wrapper .container {
  height: 100%;
}
.home-wrapper .home-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .home-wrapper .home-content{
    padding-bottom: calc(110px + (200 - 110) * ((100vw - 320px) / (991 - 320)));
  }
}
.home-wrapper .home-content .home-content-left {
  width: 60%;
  padding-top: calc(110px + 170 * (100vw - 320px) / 1600);
  padding-left: calc(93px + 167 * (100vw - 1600px) / 320);
}
@media screen and (max-width: 1599px) {
  .home-wrapper .home-content .home-content-left {
    padding-left: calc(64px + 96 * (100vw - 1400px) / 200);
  }
}
@media screen and (max-width: 1399px) {
  .home-wrapper .home-content .home-content-left {
    padding-left: calc(56px + 92 * (100vw - 1200px) / 200);
    width: 55%;
  }
}
@media screen and (max-width: 1199px) {
  .home-wrapper .home-content .home-content-left {
    padding-left: calc(36px + 96 * (100vw - 991px) / 209);
    width: 60%;
  }
}
@media screen and (max-width: 991px) {
  .home-wrapper .home-content .home-content-left {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
  .home-wrapper .home-content .home-content-left .demo-button {
    width: 100%;
    justify-content: center;
  }
}
.home-wrapper .home-content .home-content-right {
  padding-right: 60px;
  width: 45%;
  display: flex;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .home-wrapper .home-content .home-content-right {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .home-wrapper .home-content .home-content-right {
    display: none;
  }
}
.home-wrapper .home-content .home-content-right::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 160px;
  right: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(270deg, rgba(var(--white), 1), rgba(var(--white), 0.4), rgba(var(--white), 0));
}
.home-wrapper .home-content .service-tag {
  display: inline-flex;
  color: rgba(var(--theme-color), 1);
}
.home-wrapper .home-content .service-tag span {
  font-family: "Caveat", cursive;
  line-height: 0.96;
  padding-bottom: 10px;
  font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
  color: rgba(var(--theme-color), 1);
  position: relative;
}
.home-wrapper .home-content .service-tag span::after {
  position: absolute;
  content: "";
  width: 40%;
  height: calc(3px + (4 - 3) * ((100vw - 320px) / (1920 - 320)));
  bottom: 0;
  left: 0;
  background-color: rgb(240, 181, 72);
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
 .home-wrapper .home-content .service-tag span::after{
    left: 50%;
    transform: translateX(-50%);
 }
}

.home-wrapper .home-content h1 {
  margin-block: 10px;
  font-weight: 600;
  color: rgba(var(--title-color), 1);
  text-transform: capitalize;
  line-height: 1.3;
  letter-spacing: 1px;
  width: 80%;
}
@media screen and (max-width: 1400px) {
  .home-wrapper .home-content h1 {
    width: 92%;
  }
}
@media screen and (max-width: 991px) {
  .home-wrapper .home-content h1 {
    width: 100%;
  }
}
.home-wrapper .home-content p {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  margin-block: 10px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--content-color), 1);
  width: 80%;
}
@media screen and (max-width: 1400px) {
  .home-wrapper .home-content p {
    width: 92%;
  }
}
@media screen and (max-width: 991px) {
  .home-wrapper .home-content p {
    width: 96%;
    margin-inline: auto;
  }
}
.home-wrapper .home-content .demo-button {
  width: 80%;
  margin-top: calc(15px + 15 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: start;
  gap: calc(8px + 7 * (100vw - 320px) / 1600);
  flex-wrap: wrap;
}
.home-wrapper .home-content .demo-button a svg {
  color: white;
}
.home-wrapper .double-text {
  position: absolute;
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
  color: transparent;
  font-size: calc(76px + 224 * (100vw - 320px) / 1600);
  font-weight: 900;
  -webkit-background-clip: text;
  background-image: linear-gradient(0deg, rgba(var(--theme-color), 0.1), rgba(var(--white), 0));
  -webkit-text-stroke: 2px transparent;
}
@media screen and (max-width: 1600px) {
  .home-wrapper .double-text {
    bottom: -8%;
  }
}
@media screen and (max-width: 1400px) {
  .home-wrapper .double-text {
    bottom: -6%;
  }
}
@media screen and (max-width: 768px) {
  .home-wrapper .double-text {
    bottom: -6%;
  }
}
@media screen and (max-width: 575px) {
  .home-wrapper .double-text {
    bottom: -3%;
  }
}
.home-wrapper .home-image {
  position: relative;
}
@media (max-width: 767px) {
  .home-wrapper .home-image {
    display: none;
  }
}
.home-wrapper .home-image .home-info-img {
  position: relative;
  margin-top: calc(-120px + -190 * (100vw - 767px) / 1153);
  z-index: 0;
}
.home-wrapper .home-image .home-device-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(480px + 900 * (100vw - 767px) / 1153);
  z-index: 2;
}
.home-wrapper .home-image .spinner-box {
  position: absolute;
  top: -55px;
  right: 200px;
  width: calc(100px + 80 * (100vw - 767px) / 1153);
  height: calc(100px + 80 * (100vw - 767px) / 1153);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  z-index: 1;
}
@media (max-width: 1660px) {
  .home-wrapper .home-image .spinner-box {
    right: 180px;
    top: -45px;
  }
}
@media (max-width: 1499px) {
  .home-wrapper .home-image .spinner-box {
    right: 160px;
    top: -40px;
  }
}
@media (max-width: 1299px) {
  .home-wrapper .home-image .spinner-box {
    right: 140px;
    top: -35px;
  }
}
@media (max-width: 1199px) {
  .home-wrapper .home-image .spinner-box {
    right: 130px;
    top: -30px;
  }
}
@media (max-width: 1050px) {
  .home-wrapper .home-image .spinner-box {
    right: 90px;
    top: -30px;
    width: 130px;
  }
}
@media (max-width: 1024px) {
  .home-wrapper .home-image .spinner-box {
    right: 115px;
    top: -25px;
    width: 120px;
  }
}
@media (max-width: 991px) {
  .home-wrapper .home-image .spinner-box {
    right: 115px;
    top: -20px;
    width: 100px;
  }
}
.home-wrapper .home-image .spinner-box .spinner-content {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 991px) {
  .home-wrapper .home-image .spinner-box .spinner-content {
    height: 90%;
  }
}
.home-wrapper .home-image .spinner-box .spinner-content .spinner {
  position: absolute;
  z-index: 0;
  animation: rotate 10s infinite linear;
}
.home-wrapper .home-image .play-icon {
  width: calc(16px + 8 * (100vw - 320px) / 1600);
}
.home-wrapper .home-badge {
  position: absolute;
  top: 150px;
  left: 150px;
  width: calc(100px + 50 * (100vw - 320px) / 1600);
  z-index: 0;
}
@media (max-width: 1199px) {
  .home-wrapper .home-badge {
    display: none;
  }
}

/***************************
    demo  css
****************************/
.demo-wrapper {
  background-image: url(../images/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.demo-wrapper.license-section {
  background-image: unset;
}
.demo-wrapper .custom-gap {
  max-width: 950px;
  margin-inline: auto;
  display: flex;
  gap: calc(20px + 25 * (100vw - 320px) / 1600) 0;
}
.demo-wrapper .custom-gap .card-body {
  position: relative;
  padding: calc(15px + 17 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  height: 100%;
  border: 1px solid rgba(var(--line-color), 1);
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
  transition: all 0.5s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 575px) {
  .demo-wrapper .custom-gap .card-body {
    display: block;
  }
}
.demo-wrapper .custom-gap .card-body .card-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .demo-wrapper .custom-gap .card-body .card-icon-wrapper {
    align-items: start;
  }
  .demo-wrapper .custom-gap .card-body .card-icon-wrapper .icon-box {
    margin: 0;
  }
}
@media screen and (max-width: 575px) {
  .demo-wrapper .custom-gap .card-body .card-icon-wrapper {
    display: block;
    text-align: center;
  }
  .demo-wrapper .custom-gap .card-body .card-icon-wrapper .icon-box {
    margin: 0;
    margin: 0 auto 10px auto;
  }
}
.demo-wrapper .custom-gap .card-body .btn {
  border: 1px solid lightgray;
  border-radius: 40px;
  color: rgba(var(--text-color), 1);
  background-color: rgba(211, 211, 211, 0.151);
}
@media (max-width: 576px) {
  .demo-wrapper .custom-gap .card-body {
    text-align: center;
  }
}
.demo-wrapper .custom-gap .card-body .icon-box {
  width: calc(50px + 30 * (100vw - 320px) / 1600);
  min-width: calc(50px + 30 * (100vw - 320px) / 1600);
  height: calc(50px + 30 * (100vw - 320px) / 1600);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(10px + 10 * (100vw - 320px) / 1600);
  margin: auto;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  .demo-wrapper .custom-gap .card-body .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}
.demo-wrapper .custom-gap .card-body .icon-box.color1 {
  background-color: rgba(var(--theme-color), 0.1);
}
.demo-wrapper .custom-gap .card-body .icon-box.color2 {
  background-color: rgba(var(--secondary-color), 0.1);
}
.demo-wrapper .custom-gap .card-body .icon-box.color3 {
  background-color: rgba(var(--error-color), 0.1);
}
.demo-wrapper .custom-gap .card-body .icon-box.color4 {
  background-color: rgba(var(--accent-color), 0.1);
}
.demo-wrapper .custom-gap .card-body .card-logo {
  width: calc(20px + 20 * (100vw - 320px) / 1600);
  height: calc(20px + 20 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
     object-fit: contain;
}
.demo-wrapper .custom-gap .card-body h4 {
  position: relative;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
  text-align: left;
  padding-bottom: calc(2px + 4 * (100vw - 320px) / 1600);
}
@media screen and (max-width: 575px) {
  .demo-wrapper .custom-gap .card-body h4 {
    text-align: center;
  }
}
.demo-wrapper .custom-gap .card-body .card-text {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgb(141, 143, 145);
  width: 90%;
  text-align: left;
}
@media (max-width: 576px) {
  .demo-wrapper .custom-gap .card-body .card-text {
    line-height: 1.4;
    text-align: center;
    width: 100%;
    padding-bottom: calc(8px + 12 * (100vw - 320px) / 255);
  }
}
.demo-wrapper .custom-gap .card-body:hover {
  border: 1px solid rgba(var(--theme-color), 0.3);
}
.demo-wrapper .custom-gap .card-body:hover .btn {
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}
.demo-wrapper .demo-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-wrapper .demo-img .demo-vector {
  width: calc(260px + 30 * (100vw - 320px) / 1600);
}
@media (max-width: 991px) {
  .demo-wrapper .demo-img {
    display: none;
  }
}
.demo-wrapper .more-button {
  margin-top: calc(25px + 25 * (100vw - 320px) / 1600);
}

.license-section.demo-wrapper .custom-gap {
  max-width: 1120px;
  margin-inline: auto;
}

/***************************
   main feature  css
****************************/
.main-features-wrapper .main-feature-box {
  width: 100%;
  height: 100%;
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.main-features-wrapper .main-feature-box .main-feature-image {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
}
.main-features-wrapper .main-feature-box .main-feature-image.color1 {
  background-color: rgba(var(--error-color), 0.05);
}
.main-features-wrapper .main-feature-box .main-feature-image.color2 {
  background-color: rgba(var(--theme-color), 0.05);
}
.main-features-wrapper .main-feature-box .main-feature-image.color3 {
  background-color: rgba(var(--accent-color), 0.05);
}
.main-features-wrapper .main-feature-box .main-feature-image img {
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
}
.main-features-wrapper .main-feature-box.author-box {
  background-image: url(../../assets/images/background/author-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.main-features-wrapper .main-feature-box.author-box .author-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
}
.main-features-wrapper .main-feature-box.author-box .author-content span {
  font-weight: 500;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
}
.main-features-wrapper .main-feature-box.author-box .author-content .author-icon {
  width: calc(60px + 40 * (100vw - 320px) / 1600);
}
.main-features-wrapper .main-feature-box.author-box .author-content h4 {
  text-align: center;
  font-weight: 600;
  font-size: calc(18px + 12 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
}
.main-features-wrapper .main-feature-box.author-box .author-content h6 {
  text-align: center;
  font-weight: 400;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
}

/***********************
    benefits section
************************/
.benefits-section-wrapper .benefits-img-box {
  height: 100%;
  padding: calc(20px + 30 * (100vw - 320px) / 1600);
  background-color: rgba(var(--box-bg), 1);
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
}
.benefits-section-wrapper .benefits-img-box .mobile-img1,
.benefits-section-wrapper .benefits-img-box .mobile-img2 {
  width: 100%;
  height: calc(220px + 230 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
     object-fit: contain;
}
.benefits-section-wrapper .benefits-img-box .mobile-img1 {
  animation: floating-mobile 3s infinite linear;
}
.benefits-section-wrapper .benefits-img-box .mobile-img2 {
  animation: floating 5s infinite linear;
}
.benefits-section-wrapper .benefits-details-box {
  padding:  calc(14px + (30 - 14) * ((100vw - 320px) / (1920 - 320)));
  border: 1px solid rgba(var(--line-color), 1);
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li {
  display: flex;
  align-items: start;
  gap: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
  padding: calc(15px + 5 * (100vw - 320px) / 1600) 0;
  border-bottom: 1px solid rgba(var(--line-color), 1);
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li:first-child {
  padding-top: 0;
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li .benefits-icon {
  position: relative;
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li .benefits-icon span {
  position: relative;
  width: calc(24px + (30 - 24) * ((100vw - 320px) / (1920 - 320)));
  height: calc(24px + (30 - 24) * ((100vw - 320px) / (1920 - 320)));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(12px + 2 * (100vw - 320px) / 1600);
  font-weight: 600;
  color: rgba(var(--white), 1);
  background-color: rgba(var(--white), 1);
  border-radius: 6px;
  z-index: 1;
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li .benefits-icon span.icon-1 {
  background-color: rgba(var(--purple-color), 0.2);
  color: rgba(var(--purple-color), 1);
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li .benefits-icon span.icon-2 {
  background-color: rgba(var(--danger-color), 0.2);
  color: rgba(var(--danger-color), 1);
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li .benefits-icon span.icon-3 {
  background-color: rgba(var(--success-color-2), 0.2);
  color: rgba(var(--success-color-2), 1);
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li .benefits-icon span.icon-4 {
  background-color: rgba(var(--warning-color), 0.2);
  color: rgba(var(--warning-color), 1);
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li .benefits-icon span.icon-5 {
  background-color: rgba(var(--theme-color), 0.2);
  color: rgba(var(--theme-color), 1);
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li .benefits-content h5 {
  font-weight: 600;
  font-size: calc(15px + 7 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
}
.benefits-section-wrapper .benefits-details-box .benefits-listing li .benefits-content p {
  padding-top: 4px;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
}

/***********************
    feature section
************************/
.key-feature-section .features-tab {
  position: sticky;
  top: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: auto;
  white-space: nowrap;
  width: 80%;
  margin-inline: auto;
}
@media (max-width: 991px) {
  .key-feature-section .features-tab {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-direction: row;
    margin-bottom: 30px;
    overflow-x: auto;
  }
}
@media screen and (max-width: 1200px) {
  .key-feature-section .features-tab {
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
}
.key-feature-section .features-tab .nav-item .nav-link {
  padding: calc(6px + 6 * (100vw - 992px) / 928) calc(20px + 10 * (100vw - 992px) / 928);
  font-size: calc(14px + 4 * (100vw - 992px) / 928);
  font-weight: 500;
  color: rgba(var(--title-color), 1);
  background-color: rgba(var(--box-bg), 0.3);
  border: 1px solid rgba(var(--title-color), 0.2);
  border-radius: 40px;
}
.key-feature-section .features-tab .nav-item .nav-link svg {
  --size: 18px;
}
.key-feature-section .features-tab .nav-item .nav-link.active {
  background-color: rgba(var(--theme-color), 1);
  color: rgb(255, 255, 255);
}
.key-feature-section .features-tab .nav-item .nav-link.active:hover {
  color: rgb(255, 255, 255);
}
.key-feature-section .features-tab .nav-item .nav-link:hover {
  color: rgba(var(--theme-color), 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .key-feature-section .features-tab .nav-item .nav-link {
    padding: calc(6px + 6 * (100vw - 320px) / 671) calc(20px + 10 * (100vw - 320px) / 671);
    font-size: calc(14px + 2 * (100vw - 320px) / 671);
  }
}
.key-feature-section .key-feature-box {
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
  transition: all 0.2s ease-in-out;
}
.key-feature-section .key-feature-box .feature-image {
  padding: 16px;
  border-radius: 24px;
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--title-color), 0.06);
  box-shadow: inset 0 0px 4px rgba(0, 0, 0, 0.05);
}
.key-feature-section .key-feature-box .feature-image .feature-inner-box {
  overflow: hidden;
  background-color: rgba(var(--white), 1);
  border-radius: 18px;
}
.key-feature-section .key-feature-box .feature-image .feature-inner-box img {
  transition: all 0.6s;
}
.key-feature-section .key-feature-box .feature-image:hover img {
  transform: scale(1.06);
}
.key-feature-section .key-feature-box .feature-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.key-feature-section .key-feature-box .feature-contain {
  margin-top: calc(10px + 4 * (100vw - 320px) / 1600);
}
.key-feature-section .key-feature-box .feature-contain h6 {
  font-weight: 500;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  text-transform: capitalize;
  color: rgba(var(--title-color), 1);
  transition: all 0.5s ease-in-out;
}
.key-feature-section .key-feature-box .feature-contain p {
  margin-top: calc(5px + -1 * (100vw - 320px) / 1600);
  font-weight: 400;
  font-size: calc(13px + 1 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
}

/***********************
    testimonial section
************************/
.testimonial-section-wrapper .review-listing .review-box {
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--line-color), 1);
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
  height: 100%;
  padding: 4px;
}
.testimonial-section-wrapper .review-listing .review-box.item1 {
  background: linear-gradient(180deg, #FFE1E1 0%, #DDE8FC 100%);
}
.testimonial-section-wrapper .review-listing .review-box.item2 {
  background: linear-gradient(180deg, #EEE8FF 0%, #D0F7ED 100%);
}
.testimonial-section-wrapper .review-listing .review-box.item3 {
  background: linear-gradient(180deg, #D0F7ED 0%, #FFF1C6 100%);
}
.testimonial-section-wrapper .review-listing .review-box.item4 {
  background: linear-gradient(180deg, #FFE1E1 0%, #FFF1C6 100%);
}
.testimonial-section-wrapper .review-listing .review-box .review-box-innner {
  border-radius: 18px;
  padding: calc(10px + 10 * (100vw - 320px) / 1600) calc(10px + 10 * (100vw - 320px) / 1600) calc(14px + 12 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  height: 100%;
}
.testimonial-section-wrapper .review-listing .review-box .review-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-section-wrapper .review-listing .review-box .review-head .review-img {
  width: calc(40px + 20 * (100vw - 320px) / 1600);
  height: calc(40px + 20 * (100vw - 320px) / 1600);
  overflow: hidden;
  border-radius: 100%;
  transition: all 2s;
}
.testimonial-section-wrapper .review-listing .review-box .review-head .review-img .profile-img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-section-wrapper .review-listing .review-box .review-head .review-info {
  width: calc(100% - (40px + 20 * (100vw - 320px) / 1600) - 10px);
}
.testimonial-section-wrapper .review-listing .review-box .review-head .review-info h6 {
  font-weight: 600;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
}
.testimonial-section-wrapper .review-listing .review-box .review-body {
  padding-top: 10px;
}
.testimonial-section-wrapper .review-listing .review-box .review-body p {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--content-color), 1);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.testimonial-section-wrapper .review-listing .review-box .review-body .review-part {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.testimonial-section-wrapper .review-listing .review-box .review-body .review-part .rating-part {
  display: flex;
  align-items: center;
  gap: 5px;
}
.testimonial-section-wrapper .review-listing .review-box .review-body .review-part .rating-part .star-listing {
  display: flex;
  align-items: center;
  gap: calc(2px + 3 * (100vw - 320px) / 1600);
}
.testimonial-section-wrapper .review-listing .review-box .review-body .review-part .rating-part .star-listing li {
  line-height: 1;
}
.testimonial-section-wrapper .review-listing .review-box .review-body .review-part .rating-part span {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  color: rgba(var(--content-color), 1);
}
.testimonial-section-wrapper .review-listing .review-box .review-body .review-part .quotes {
  opacity: 0.1;
}
.testimonial-section-wrapper .review-listing .review-box:hover img {
  scale: 1.1;
  transition: all 0.6s;
}
.testimonial-section-wrapper .review-listing .review-box:hover .review-info {
  letter-spacing: 0.4px;
  transition: all 0.6s;
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  padding: 16px;
  background: linear-gradient(270deg, rgba(26, 174, 201, 0.03) -21.91%, rgba(14, 109, 233, 0.06) 104.29%);
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .review-head {
  display: block;
  width: 100%;
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .review-head .review-img {
  margin-inline: auto;
  height: calc(60px + 60 * (100vw - 320px) / 1600);
  width: calc(60px + 60 * (100vw - 320px) / 1600);
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .review-head .review-info {
  padding-top: 10px;
  text-align: center;
  width: unset;
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .review-head .review-info h6 {
  font-size: calc(16px + 8 * (100vw - 320px) / 1600);
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .review-body {
  padding-top: calc(4px + 16 * (100vw - 320px) / 1600);
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .review-body p {
  text-align: center;
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width:575px) {
    .testimonial-section-wrapper .review-listing .review-box.left-side-review .review-body p{
        width: 96%;
    }
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .review-body .review-part {
  justify-content: center;
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .review-body .rating-part {
  padding-top: calc(0px + 20 * (100vw - 320px) / 1600);
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .review-body .rating-part img {
  height: calc(14px + 6 * (100vw - 320px) / 1600);
  width: calc(14px + 6 * (100vw - 320px) / 1600);
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review .quotes {
  position: absolute;
  opacity: 0.2;
  top: 14%;
  right: 16%;
  height: calc(40px + 40 * (100vw - 320px) / 1600);
  width: calc(40px + 40 * (100vw - 320px) / 1600);
}
.testimonial-section-wrapper .review-listing .review-box.left-side-review:hover .review-img img {
  transform: scale(1.1);
  transition: all 0.6s;
}

/***********************
    slider section
************************/
.slider-section-wrapper .vertical-marquee {
  overflow: hidden;
  position: relative;
}
.slider-section-wrapper .marquee-track {
  display: flex;
  flex-direction: column;
}
.slider-section-wrapper .marquee-track.marquee-correct {
  animation: verticalScroll 18s linear infinite;
}
.slider-section-wrapper .marquee-track.marquee-track-reverse {
  animation: verticalScroll-reverse 28s linear infinite;
}
.slider-section-wrapper .vertical-marquee:hover .marquee-track {
  animation-play-state: paused;
}
.slider-section-wrapper .marquee-track img {
  width: 100%;
  margin-bottom: 16px;
}

@keyframes verticalScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes verticalScroll-reverse {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
/***********************
    license section
************************/
.license-section .license-right,
.license-section .license-left {
  padding: calc(16px + 24 * (100vw - 320px) / 1600);
  border-radius: 20px;
}
.license-section .license-right h6,
.license-section .license-left h6 {
  font-size: calc(18px + 4 * (100vw - 320px) / 1600);
  font-weight: 600;
}
.license-section .license-right p,
.license-section .license-left p {
  padding-top: 8px;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
}
.license-section .license-right ul,
.license-section .license-left ul {
  margin-top: calc(10px + 14 * (100vw - 320px) / 1600);
}
.license-section .license-right ul li,
.license-section .license-left ul li {
  width: 100%;
  margin-bottom: calc(10px + 5 * (100vw - 320px) / 1600);
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  gap: 4px;
}
.license-section .license-right ul li p,
.license-section .license-left ul li p {
  padding-top: 0;
}
.license-section .license-right ul li img,
.license-section .license-left ul li img {
  width: calc(14px + 2 * (100vw - 320px) / 1600);
  height: calc(14px + 2 * (100vw - 320px) / 1600);
  margin-right: 10px;
}
.license-section .license-right ul li:hover,
.license-section .license-left ul li:hover {
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: 0.4s;
}
.license-section .license-right ul li:last-child,
.license-section .license-left ul li:last-child {
  margin-bottom: 0;
}
.license-section .license-left {
  margin-top: 45px;
  background-color: rgba(var(--white), 1);
  background-color: rgba(var(--box-bg), 0.3);
  border: 1px solid rgba(var(--title-color), 0.2);
}
@media screen and (max-width: 768px) {
  .license-section .license-left {
    margin-top: 0;
  }
}
.license-section .license-right {
  background: linear-gradient(270deg, rgba(26, 174, 201, 0.03) -21.91%, rgba(14, 109, 233, 0.06) 104.29%);
  border: 1px solid rgba(var(--theme-color), 0.2);
  border-radius: 14px;
  position: relative;
}
.license-section .license-right .ribbon {
  font-size: calc(12px + 6 * (100vw - 320px) / 1600);
  font-weight: 400;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .license-section .license-right .ribbon {
    --f: .5em;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 1.8;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    -o-border-image: conic-gradient(rgba(0, 0, 0, 0.5333333333) 0 0) 51%/var(--f);
       border-image: conic-gradient(rgba(0, 0, 0, 0.5333333333) 0 0) 51%/var(--f);
    clip-path: polygon(100% calc(100% - var(--f)), 100% 100%, calc(100% - var(--f)) calc(100% - var(--f)), var(--f) calc(100% - var(--f)), 0 100%, 0 calc(100% - var(--f)), 999px calc(100% - var(--f) - 999px), calc(100% - 999px) calc(100% - var(--f) - 999px));
    transform: translate(29.2893218813%, -100%) rotate(45deg);
    transform-origin: 0% 100%;
    background-color: rgba(var(--theme-color), 1);
  }
}
@media screen and (max-width: 768px) {
  .license-section .license-right .ribbon {
    --r: .8em;
    position: absolute;
    top: 3%;
    right: 0%;
    border-block: 0.5em solid rgba(0, 0, 0, 0);
    padding: 4px 12px 4px 16px;
    line-height: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 calc(100% - 0.25em), var(--r) 50%, 0 0.25em);
    background-color: rgba(var(--theme-color), 1);
    width: -moz-fit-content;
    width: fit-content;
  }
}

/***********************
    portfolio section
************************/
.portfolio-wrapper {
  background: linear-gradient(92.81deg, rgba(26, 174, 201, 0.03) -21.91%, rgba(14, 109, 233, 0.06) 104.29%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: calc(20px + 80 * (100vw - 320px) / 1600);
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: calc(10px + 20 * (100vw - 320px) / 1600);
}
.portfolio-wrapper .portfolio-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
}
@media (max-width: 1199px) {
  .portfolio-wrapper .portfolio-content {
    width: 100%;
  }
}
.portfolio-wrapper .portfolio-content h3 {
  line-height: 1.2;
  font-size: calc(20px + 22 * (100vw - 320px) / 1600);
  font-weight: 700;
  color: rgba(var(--title-color), 1);
}
.portfolio-wrapper .portfolio-content h6 {
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.portfolio-wrapper .portfolio-buttons {
  margin-top: calc(20px + 20 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(10px + 10 * (100vw - 320px) / 1600);
}
.portfolio-wrapper .portfolio-buttons .icon {
  width: calc(18px + 2 * (100vw - 320px) / 1600);
  height: calc(18px + 2 * (100vw - 320px) / 1600);
}
.portfolio-wrapper img {
  position: absolute;
  height: calc(60px + 40 * (100vw - 320px) / 1600);
  width: calc(60px + 40 * (100vw - 320px) / 1600);
  opacity: 0.4;
}
@media screen and (max-width: 991px) {
  .portfolio-wrapper img {
    display: none;
  }
}
.portfolio-wrapper .image1 {
  top: -2%;
  left: 8%;
  animation: floating 4s infinite linear;
}
.portfolio-wrapper .image2 {
  left: -2%;
  top: 28%;
  animation: floating 1.5s infinite linear;
}
.portfolio-wrapper .image3 {
  right: 20%;
  bottom: 0%;
  animation: floating 1.6s infinite linear;
}
.portfolio-wrapper .image4 {
  right: 2%;
  top: 16%;
  animation: floating 1.6s infinite linear;
}
.portfolio-wrapper .image5 {
  top: -8%;
  right: 18%;
  animation: floating 1s infinite linear;
}
.portfolio-wrapper .image6 {
  bottom: 30%;
  left: 13%;
  animation: floating 0.9s infinite linear;
}
@media screen and (max-width: 1199px) {
  .portfolio-wrapper .image6 {
    display: none;
  }
}
.portfolio-wrapper .image7 {
  bottom: -5%;
  left: 24%;
  animation: floating 1.2s infinite linear;
}
.portfolio-wrapper .image8 {
  bottom: -5%;
  left: 5%;
  animation: floating 1.3s infinite linear;
}
.portfolio-wrapper .image9 {
  bottom: -5%;
  right: -2%;
  animation: floating 2.6s infinite linear;
}
.portfolio-wrapper .image10 {
  bottom: 26%;
  right: 9%;
  animation: floating 3.2s infinite linear;
}
@media screen and (max-width: 1199px) {
  .portfolio-wrapper .image10 {
    display: none;
  }
}

@keyframes floating {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translateY(-6%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes floating-mobile {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
/***********************
    footer section
************************/
.footer-section {
  position: relative;
  background-image: url(../images/background/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  overflow: hidden;
}
.footer-section .footer-box .footer-img .count-img {
  width: calc(100px + 102 * (100vw - 320px) / 1600);
}
.footer-section .footer-box .footer-details {
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
}
.footer-section .footer-box .footer-details h5 {
  font-weight: 400;
  font-size: calc(14px + 8 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
  white-space: nowrap;
}
.footer-section .footer-box .footer-details h2 {
  margin-top: calc(5px + 5 * (100vw - 320px) / 1600);
  font-weight: 700;
  color: rgba(var(--white), 1);
}
.footer-section .footer-content {
  text-align: center;
  margin-top: calc(30px + 50 * (100vw - 320px) / 1600);
}
.footer-section .footer-content .footer-logo {
  height: calc(20px + 25 * (100vw - 320px) / 1600);
}
.footer-section .footer-content p {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  line-height: 1.8;
  color: rgba(var(--content-color), 1);
}
@media (max-width: 1199px) {
  .footer-section .footer-content p {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .footer-section .footer-content p {
    width: 100%;
  }
}
.footer-section .footer-content p span {
  line-height: 1;
}
.footer-section .footer-content p span .star {
  line-height: 1;
  width: calc(16px + 8 * (100vw - 320px) / 1600);
  height: calc(16px + 8 * (100vw - 320px) / 1600);
}
.footer-section .footer-content .more-button {
  margin-top: calc(20px + 20 * (100vw - 320px) / 1600);
}
.footer-section .footer-content .Powered-sec {
  margin-top: calc(20px + 20 * (100vw - 320px) / 1600);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 400;
  font-size: calc(15px + 5 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
}
.footer-section .footer-content .Powered-sec .pixalstrap-logo {
  width: calc(100px + 70 * (100vw - 320px) / 1600);
}
.footer-section .copyright-box {
  position: relative;
  text-align: center;
  margin-top: calc(20px + 60 * (100vw - 320px) / 1600);
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: rgba(var(--title-color), 1);
}
@media (max-width: 767px) {
  .footer-section .copyright-box {
    padding-bottom: 10px;
  }
}
.footer-section .copyright-box::after {
  content: "";
  background-image: url(../../assets/images/background/copyright-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 50px;
}
@media (max-width: 767px) {
  .footer-section .copyright-box::after {
    display: none;
  }
}
.footer-section .copyright-box p {
  position: relative;
  color: rgba(var(--white), 1);
  z-index: 1;
}

/*========================
    tap to top CSS
==========================*/
.scroll-to-top {
  z-index: 4;
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: calc(40px + 10 * (100vw - 320px) / 1600);
  height: calc(40px + 10 * (100vw - 320px) / 1600);
  border-radius: 10px;
  background-color: rgba(var(--theme-color), 1);
  border: none;
  font-size: calc(20px + 10 * (100vw - 320px) / 1600);
  transition: all 0.5s ease;
  outline: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-to-top .arrow {
  --color: rgba(var(--white), 1);
  --size: calc(18px + (26 - 18) * ((100vw - 320px) / (1920 - 320)));
}/*# sourceMappingURL=style.css.map */