/******************
    Variable css
********************/
:root {
  --theme-color: 245, 130, 24;
  --title-color: 0, 22, 46;
  --light-text: 153, 153, 153;
  --line-color: 229, 232, 234;
  --box-bg: 246, 246, 246;
  --error-color: 255, 75, 75;
  --success-color: 39, 175, 77;
  --secondary-color: 255, 196, 18;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
}

/************************ 
    Reset css 
***********************/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section,
.section-t-space {
  padding-top: calc(30px + 70 * (100vw - 320px) / 1600);
}

.section-b-space {
  padding-bottom: calc(30px + 70 * (100vw - 320px) / 1600);
}

.custom-container {
  padding: 0 calc(12px + 88 * (100vw - 320px) / 1600);
}

.theme-color {
  color: rgba(var(--theme-color), 1);
}

.theme-bg {
  background-color: rgba(var(--theme-color), 1);
}

.title-color {
  color: rgba(var(--title-color), 1);
}

@media (min-width: 1560px) {
  .container {
    max-width: 1520px;
  }
}
.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;
  background: rgba(var(--white), 1);
  color: rgba(var(--title-color), 1);
}

body::-webkit-scrollbar {
  scrollbar-width: none;
  width: 0px;
}

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

h2 {
  font-size: calc(24px + 8 * (100vw - 320px) / 1600);
  line-height: 1.2;
  margin-bottom: 0;
  display: inline-block;
}

h3 {
  font-size: calc(18px + 8 * (100vw - 320px) / 1600);
  line-height: 1;
  margin-bottom: 0;
}

h4 {
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
  line-height: 1;
  margin-bottom: 0;
}

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

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

p {
  font-size: calc(13px + 8 * (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;
}

/*********************
    Button css 
**********************/
.btn {
  padding: calc(8px + 4 * (100vw - 320px) / 1600) calc(15px + 15 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: 500;
  border-radius: 30px;
  font-size: calc(14px + 6 * (100vw - 320px) / 1600);
}
.btn.solid-btn {
  color: rgba(var(--theme-color), 1);
  border: 1px solid rgba(var(--theme-color), 1);
}
.btn.solid-btn:hover {
  color: rgba(var(--white), 1) !important;
  background-color: rgba(var(--theme-color), 1) !important;
}
.btn.solid-btn:active {
  color: rgba(var(--white), 1) !important;
  background-color: rgba(var(--theme-color), 1) !important;
  border-color: rgba(var(--theme-color), 1);
}
.btn.outline-btn {
  color: rgba(var(--white), 1);
  background-color: transparent;
  border: 1px solid rgba(var(--white), 1);
}
.btn.outline-btn:hover {
  background-color: rgba(var(--white), 1) !important;
  color: rgba(var(--theme-color), 1) !important;
}
.btn.success-btn {
  background-color: rgba(var(--success-color), 1);
  color: rgba(var(--white), 1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn.success-btn .icon {
  --Iconsax-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;
}

/*========================
    tap to top CSS start
==========================*/
.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);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  outline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.scroll-to-top .arrow {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: calc(18px + (26 - 18) * ((100vw - 320px) / (1920 - 320)));
}

/***************************
    animation css 
****************************/
@-webkit-keyframes box1 {
  0% {
    -webkit-transform: translateY(0) rotate(15deg);
            transform: translateY(0) rotate(15deg);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(15deg);
            transform: translateY(-10px) rotate(15deg);
  }
}
@keyframes box1 {
  0% {
    -webkit-transform: translateY(0) rotate(15deg);
            transform: translateY(0) rotate(15deg);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(15deg);
            transform: translateY(-10px) rotate(15deg);
  }
}
@-webkit-keyframes box2 {
  0% {
    -webkit-transform: translateY(0) rotate(-15deg);
            transform: translateY(0) rotate(-15deg);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-15deg);
            transform: translateY(-10px) rotate(-15deg);
  }
}
@keyframes box2 {
  0% {
    -webkit-transform: translateY(0) rotate(-15deg);
            transform: translateY(0) rotate(-15deg);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-15deg);
            transform: translateY(-10px) rotate(-15deg);
  }
}
/***************************
    Title css 
****************************/
.title {
  text-align: center;
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
}
.title h2 {
  font-weight: 700;
  font-size: calc(22px + 10 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
}
.title h2 span {
  position: relative;
  color: rgba(var(--theme-color), 1);
  display: inline-block;
}
.title h2 span::after {
  content: "";
  position: relative;
  background-image: url("../images/svg/title-line.7fd2a4a6304f.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 20px;
  display: block;
}
@media (max-width: 576px) {
  .title h2 span::after {
    content: none;
  }
}
.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: 60%;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  line-height: 1.5;
  color: rgba(var(--light-text), 1);
}
@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);
  z-index: 1;
}
header.sticky {
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(var(--white), 1);
  -webkit-box-shadow: 0 8px 10px rgba(var(--black), 0.05);
          box-shadow: 0 8px 10px rgba(var(--black), 0.05);
  z-index: 2;
}
header.sticky .logo {
  display: none;
}
header.sticky .logo-dark {
  display: block;
  height: calc(35px + 15 * (100vw - 320px) / 1600);
}
header.sticky::after {
  top: 0;
}
header.sticky .navbar .navbar-toggler .navbar-toggler-icon {
  border: 1px solid rgba(var(--title-color), 0.07);
}
header.sticky .navbar .navbar-toggler .navbar-toggler-icon .icon {
  --Iconsax-Color: rgba(var(--title-color), 0.76);
}
header.sticky .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(55px + 30 * (100vw - 320px) / 1600);
  top: -100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}

.navbar {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .btn {
  margin-left: auto;
}
.navbar .logo {
  display: block;
  height: calc(35px + 15 * (100vw - 320px) / 1600);
}
.navbar .logo-dark {
  display: none;
}
.navbar .navbar-toggler {
  padding: 0;
  border: 0;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
  color: rgba(var(--white), 0.3);
  border: 1px solid rgba(var(--white), 0.3);
  border-radius: 6px;
  margin-right: calc(10px + 10 * (100vw - 320px) / 1600);
  background-image: none;
  background-color: #f6f6f6;
}
.navbar .navbar-toggler .navbar-toggler-icon .icon {
  --Iconsax-Color: rgba(var(--title-color), 1);
  --Iconsax-Size: 20px;
  padding: 5px;
}
.navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse {
    background-color: rgba(var(--white), 1);
    color: rgba(var(--white), 1);
    padding: 15px;
    margin-top: 5px;
    border-radius: 8px;
    -webkit-box-shadow: 3px 4px 12px 0 rgba(34, 34, 34, 0.1411764706);
            box-shadow: 3px 4px 12px 0 rgba(34, 34, 34, 0.1411764706);
    margin-top: 16px !important;
    position: absolute;
    top: 30px;
    left: 0px;
    width: 100%;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
  position: relative;
  font-weight: 600;
  color: rgba(var(--theme-color), 1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border: 1px solid rgba(var(--theme-color), 1);
  width: 20px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: rgba(var(--theme-color), 1);
}
.navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(9px + 21 * (100vw - 320px) / 1600);
}
@media (max-width: 1199px) {
  .navbar .navbar-nav {
    gap: calc(9px + 4 * (100vw - 320px) / 672);
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  color: rgba(var(--light-text), 1);
  font-weight: 500;
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  padding: 0;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--white), 1);
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: rgba(var(--theme-color), 1);
}

/***********************
    home section 
************************/
.home-wrapper {
  background-image: url("../images/background/home-bg.84361c2d7eef.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding-bottom: 40px;
  height: 95vh;
}
@media (max-width: 1200px) {
  .home-wrapper {
    height: auto;
  }
}
.home-wrapper .home-content {
  text-align: center;
  padding-top: calc(80px + 90 * (100vw - 320px) / 1600);
}
.home-wrapper .home-content .service-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: calc(8px + 4 * (100vw - 320px) / 1600) calc(15px + 15 * (100vw - 320px) / 1600);
  background: -webkit-gradient(linear, left top, right top, from(rgba(var(--theme-color), 0.2)), to(rgba(var(--theme-color), 0)));
  background: linear-gradient(90deg, rgba(var(--theme-color), 0.2) 0%, rgba(var(--theme-color), 0) 100%);
  border-radius: 26px;
}
.home-wrapper .home-content .service-tag h6 {
  font-size: calc(13px + 5 * (100vw - 320px) / 1600);
  color: rgba(var(--theme-color), 1);
}
.home-wrapper .home-content h1 {
  width: 55%;
  margin: 8px auto;
  color: rgba(var(--white), 1);
  text-transform: capitalize;
  line-height: 1.3;
  letter-spacing: 1px;
}
.home-wrapper .home-content h1 span {
  padding-inline: 25px;
  letter-spacing: 1px;
  background-color: rgba(var(--theme-color), 0.1);
  color: rgba(var(--theme-color), 1);
  border: 1px dashed rgba(var(--theme-color), 1);
}
@media (max-width: 1199px) {
  .home-wrapper .home-content h1 {
    width: 100%;
  }
}
.home-wrapper .home-content .demo-button {
  margin-top: calc(15px + 15 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(8px + 7 * (100vw - 320px) / 1600);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home-wrapper .box1 {
  position: absolute;
  top: 4%;
  left: 15%;
  opacity: 0.6;
  -webkit-animation: box1 1s infinite alternate;
          animation: box1 1s infinite alternate;
}
@media (max-width: 1199px) {
  .home-wrapper .box1 {
    display: none;
  }
}
.home-wrapper .box2 {
  position: absolute;
  right: 15%;
  top: 4%;
  opacity: 0.6;
  -webkit-animation: box2 1s infinite alternate;
          animation: box2 1s infinite alternate;
  -webkit-animation-delay: 0.5ms;
          animation-delay: 0.5ms;
}
@media (max-width: 1199px) {
  .home-wrapper .box2 {
    display: none;
  }
}
.home-wrapper .home-img {
  position: relative;
  margin-top: 80px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(10px + 20 * (100vw - 320px) / 1600);
  z-index: 0;
}
@media (max-width: 991px) {
  .home-wrapper .home-img {
    display: none;
  }
}
.home-wrapper .home-img .mockup-img {
  width: 20%;
}
@media (max-width: 1440px) {
  .home-wrapper .home-img .mockup-img {
    width: 23%;
  }
}
@media (max-width: 1280px) {
  .home-wrapper .home-img .mockup-img {
    width: 26%;
  }
}
@media (max-width: 1100px) {
  .home-wrapper .home-img .mockup-img {
    width: 28%;
  }
}
@media (max-width: 1040px) {
  .home-wrapper .home-img .mockup-img {
    width: 30%;
  }
}
.home-wrapper .home-img .mockup-img .phone {
  width: calc(300px + 50 * (100vw - 991px) / 929);
  height: calc(550px + 100 * (100vw - 991px) / 929);
  border: 5px solid black;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 30px rgba(34, 34, 34, 0.25);
          box-shadow: 0 0 30px rgba(34, 34, 34, 0.25);
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 991px) {
  .home-wrapper .home-img .mockup-img .phone {
    display: none;
  }
}
.home-wrapper .home-img .mockup-img h5 {
  padding: calc(8px + 4 * (100vw - 320px) / 1600) calc(15px + 15 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: 500;
  border-radius: 30px;
  font-size: calc(14px + 6 * (100vw - 320px) / 1600);
}

/***************************
    explore  css
****************************/
.explore-wrapper {
  margin-top: calc(370px + 54 * (100vw - 1199px) / 721);
}
@media (max-height: 800px) {
  .explore-wrapper {
    margin-top: calc(326px + 169 * (100vw - 1199px) / 721);
  }
}
@media screen and (max-width: 1200.98px) {
  .explore-wrapper {
    margin-top: 0px;
  }
}
.explore-wrapper .card-body {
  padding: calc(15px + 15 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  border: 1px solid rgba(var(--line-color), 1);
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.explore-wrapper .card-body:hover {
  background-color: rgba(var(--theme-color), 0.1);
  border: 1px solid rgba(var(--line-color), 1);
}
.explore-wrapper .card-body:hover .icon-box {
  background-color: rgba(var(--theme-color), 1);
}
.explore-wrapper .card-body:hover .card-logo {
  color: rgba(var(--white), 1);
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
@media (max-width: 576px) {
  .explore-wrapper .card-body {
    text-align: center;
  }
}
.explore-wrapper .card-body .icon-box {
  width: calc(50px + 10 * (100vw - 320px) / 1600);
  height: calc(50px + 10 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 576px) {
  .explore-wrapper .card-body .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}
.explore-wrapper .card-body .card-logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
}
.explore-wrapper .card-body h4 {
  position: relative;
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
  margin-bottom: 12px;
  padding-bottom: 10px;
}
.explore-wrapper .card-body h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  border: 1px solid rgba(var(--theme-color), 1);
  width: 60px;
}
@media (max-width: 576px) {
  .explore-wrapper .card-body h4::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.explore-wrapper .card-body .card-text {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgb(141, 143, 145);
  margin-top: 5px;
}

.more-button {
  margin-top: calc(25px + 25 * (100vw - 320px) / 1600);
}

/***********************
    screen section 
************************/
.screen-wrapper {
  background-image: url("../images/background/screen-bg.574848bb0875.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 425px;
  height: calc(365px + 60 * (100vw - 320px) / 1600);
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
  padding: calc(20px + 40 * (100vw - 320px) / 1600);
}

.service-slider-top {
  margin-top: -175px;
  padding-inline: calc(20px + 60 * (100vw - 320px) / 1600);
}
.service-slider-top .screen-slider .screen {
  width: 100%;
  text-align: center;
}
.service-slider-top .screen-slider .screen .screen-img {
  width: 100%;
  border-radius: calc(10px + 5 * (100vw - 320px) / 1600);
}

/***********************
    feature section 
************************/
.feature-section .feature-box {
  background-color: rgba(var(--white), 1);
  padding: calc(10px + 10 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--line-color), 1);
  border-radius: calc(6px + 6 * (100vw - 320px) / 1600);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.feature-section .feature-box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.feature-section .feature-box .feature-image img {
  border-radius: calc(4px + 4 * (100vw - 320px) / 1600);
}
.feature-section .feature-box .feature-contain {
  margin-top: 10px;
}
.feature-section .feature-box .feature-contain h6 {
  color: rgba(var(--title-color), 1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.feature-section .feature-box .feature-contain p {
  margin-top: 5px;
  font-weight: 400;
  font-size: calc(12px + 6 * (100vw - 320px) / 1600);
  color: rgba(var(--light-text), 1);
}

/***********************
    core features section 
************************/
.core-features-wrapper {
  background-image: url("../images/background/core-features-bg.b19f48cf2a1a.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.core-features-wrapper .title h2 {
  margin-bottom: 10px;
}
.core-features-wrapper .title h2 span::after {
  content: none;
}
.core-features-wrapper .title p {
  width: 60%;
  text-align: center;
}
@media (max-width: 1199px) {
  .core-features-wrapper .title p {
    text-align: center;
    width: 100%;
  }
}
.core-features-wrapper .feature-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1400px) {
  .core-features-wrapper .feature-center .row:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 992px) {
  .core-features-wrapper .feature-center .row:first-child > div .core-feature-box {
    margin-top: 0;
  }
}
.core-features-wrapper .core-feature-box {
  margin-top: 0;
  width: calc(100% - (20px + 20 * (100vw - 320px) / 1600));
  margin-left: auto;
  margin-right: unset;
  border-radius: 6px;
  background-color: rgba(var(--white), 0.1);
  padding: 10px 10px 10px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: calc(18px + 42 * (100vw - 320px) / 1600);
  -webkit-transition: all 0.5s ease-in-out !important;
  transition: all 0.5s ease-in-out !important;
}
.core-features-wrapper .core-feature-box:hover {
  background-color: rgba(var(--theme-color), 0.5);
}
@media (max-width: 1700px) and (min-width: 1400px) {
  .core-features-wrapper .core-feature-box {
    margin-inline: calc(5px + 20 * (100vw - 1400px) / 300);
  }
}
@media (max-width: 1050px) and (min-width: 992px) {
  .core-features-wrapper .core-feature-box {
    margin-inline: calc(5px + 20 * (100vw - 992px) / 408);
  }
}
.core-features-wrapper .core-feature-box .feature-icon-box {
  position: absolute;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-inline: auto;
  z-index: 0;
  background-color: #041322;
  border-radius: 100%;
  margin-left: -30px;
}
.core-features-wrapper .core-feature-box .feature-icon-box .icon-box {
  content: "";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: rgba(var(--theme-color), 1);
  border-radius: 100%;
  z-index: -1;
}
.core-features-wrapper .core-feature-box .feature-icon-box .icon {
  width: 30px;
  height: 30px;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.core-features-wrapper .core-feature-box .feature-details {
  padding-left: 50px;
  border-radius: 5px;
  z-index: 0;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.core-features-wrapper .core-feature-box h4 {
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
  line-height: 1.3;
  color: rgba(var(--white), 1);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

/***********************
    features section 
************************/
.features-wrapper {
  background-image: url("../images/background/features-bg.08d7c034b440.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
}
.features-wrapper .title-content h2 {
  font-weight: 700;
  font-size: calc(24px + 8 * (100vw - 320px) / 1600);
  color: rgba(var(--title-color), 1);
}
.features-wrapper .title-content h2 span {
  position: relative;
  color: rgba(var(--theme-color), 1);
  display: inline-block;
}
.features-wrapper .title-content h2 span::after {
  content: "";
  position: relative;
  background-image: url("../images/svg/title-line.7fd2a4a6304f.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 20px;
  display: block;
}
@media (max-width: 1199px) {
  .features-wrapper .title-content h2 {
    text-align: center;
    width: 100%;
  }
}
.features-wrapper .title-content p {
  width: 50%;
  font-weight: 400;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  line-height: 1.5;
  color: rgba(var(--light-text), 1);
}
@media (max-width: 1199px) {
  .features-wrapper .title-content p {
    width: 100%;
    text-align: center;
  }
}
.features-wrapper .custom-gap {
  margin-top: calc(25px + 25 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(30px + 15 * (100vw - 320px) / 1600) 0;
}
.features-wrapper .custom-gap .card-body {
  padding: calc(15px + 15 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 100%;
  border: 1px solid rgba(var(--theme-color), 0.1);
  -webkit-box-shadow: 4px 4px 40px 0px rgba(147, 96, 255, 0.12);
          box-shadow: 4px 4px 40px 0px rgba(147, 96, 255, 0.12);
  border-radius: 10px;
}
@media (max-width: 576px) {
  .features-wrapper .custom-gap .card-body {
    text-align: center;
  }
}
.features-wrapper .custom-gap .card-body .icon-box {
  width: calc(50px + 10 * (100vw - 320px) / 1600);
  height: calc(50px + 10 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(var(--box-bg), 1);
  border-radius: 10px;
}
@media (max-width: 576px) {
  .features-wrapper .custom-gap .card-body .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}
.features-wrapper .custom-gap .card-body .icon-box.color1 {
  background: linear-gradient(151.88deg, #b18cff 16.01%, #9360ff 71.23%), linear-gradient(0deg, #e8f1ff, #e8f1ff);
}
.features-wrapper .custom-gap .card-body .icon-box.color2 {
  background: linear-gradient(148.17deg, #e393ff 25.07%, #c622ff 81.41%), linear-gradient(0deg, #e9f7ed, #e9f7ed);
}
.features-wrapper .custom-gap .card-body .icon-box.color3 {
  background: linear-gradient(149.68deg, #5e9eff 31.76%, #1e78ff 82.77%), linear-gradient(0deg, #e5f7fb, #e5f7fb);
}
.features-wrapper .custom-gap .card-body .icon-box.color4 {
  background: linear-gradient(145.84deg, #32daff 32.28%, #00b1d8 87.65%), linear-gradient(130.51deg, #4dde75 16.15%, #27af4d 61.63%);
}
.features-wrapper .custom-gap .card-body .icon-box.color5 {
  background: linear-gradient(153.82deg, #8a96ff 24.2%, #5465ff 80.01%), linear-gradient(0deg, #f9e9ff, #f9e9ff);
}
.features-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;
}
.features-wrapper .custom-gap .card-body h4 {
  position: relative;
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
}
.features-wrapper .custom-gap .card-body .card-text {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgb(141, 143, 145);
  margin-top: 5px;
}
.features-wrapper .custom-gap .vector-img {
  width: 230px;
}

/***********************
    portfolio section 
************************/
.portfolio-wrapper {
  background-image: url("../images/background/portfolio-bg.5cb1662b54d1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: calc(20px + 60 * (100vw - 320px) / 1600);
  width: 100%;
  height: auto;
  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(18px + 22 * (100vw - 320px) / 1600);
  font-weight: 700;
  color: rgba(var(--white), 1);
}
.portfolio-wrapper .portfolio-content h6 {
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  font-weight: 400;
  color: rgba(var(--white), 0.8);
}
.portfolio-wrapper .portfolio-buttons {
  margin-top: calc(20px + 20 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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);
}

/***********************
    footer section 
************************/
.footer-section {
  background-image: url("../images/background/footer-bg.b19f48cf2a1a.png");
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  z-index: 0;
}
.footer-section .footer-box .footer-img .count-img {
  width: calc(140px + 150 * (100vw - 320px) / 1600);
}
.footer-section .footer-box .footer-details {
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
}
.footer-section .footer-box .footer-details h3 {
  font-weight: 400;
  color: rgba(var(--light-text), 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 .rating-content {
  margin-top: calc(25px + 25 * (100vw - 320px) / 1600);
}
.footer-section .rating-content h2 {
  text-transform: uppercase;
  font-size: calc(25px + 25 * (100vw - 320px) / 1600);
}
.footer-section .rating-content p {
  margin-top: 10px;
  line-height: 1.5;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: calc(4px + 6 * (100vw - 320px) / 1600);
}
@media (max-width: 576px) {
  .footer-section .rating-content p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-section .rating-content p span {
  line-height: 1;
}
.footer-section .rating-content p span .star {
  line-height: 1;
  width: 16px;
  height: 16px;
}
.footer-section .more-button {
  margin-top: calc(25px + 25 * (100vw - 320px) / 1600);
}
.footer-section .copyright-box {
  text-align: center;
  margin-top: calc(20px + 60 * (100vw - 320px) / 1600);
  padding-block: calc(10px + 10 * (100vw - 320px) / 1600);
  border-top: 1px solid rgba(var(--white), 0.1);
}
.footer-section .copyright-box p {
  color: rgba(var(--white), 1);
}

.qr-btn {
  position: relative;
}
.qr-btn .qr-code {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 100px;
  padding: 5px;
  border: 1px solid black;
  border-radius: calc(6px + 4 * (100vw - 320px) / 1600);
  z-index: 3;
}
@media (max-width: 991px) {
  .qr-btn .qr-code {
    display: none;
  }
}
/*# sourceMappingURL=style.css.d41d8cd98f00.map */