/******************
    Variable css
********************/
:root {
  --theme-color: 237, 144, 34;
  --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.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(75px + 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(85px + 15 * (100vw - 360px) / 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.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: 60px;
  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(40px + 54 * (100vw - 1199px) / 721);
}
@media (max-height: 800px) {
  .explore-wrapper {
    margin-top: calc(96px + 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.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 425px;
  height: calc(175px + 60 * (100vw - 250px) / 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.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.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.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.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.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;
  }
}
/* mfs css start  */
.inner-packages .an-btn-wrapper .an-primary-btn.dark {
  border: 2px solid rgba(var(--theme-color), 1);
}
.inner-packages .an-primary-btn {
  /* font-size: 14px; */
  /* padding: 14px 10px; */
}

.inner-packages {
  padding: 30px 15px;
}

.inner-packages span strong {
  font-size: 40px;
}

.inner-packages span h4 {
  margin-bottom: 0px;
  font-size: 24px;
}

.inner-packages p {
  font-size: 16px;
}

.inner-packages ul li {
  font-size: 16px;
  padding-left: 1px;
}
.inner-packages {
  padding: 60px 30px;
  border: 2px solid rgba(var(--theme-color), 1);
  border-radius: 15px;
  background: white;
  transition: 0.5s;
  margin-bottom: 20px;
}

.inner-packages span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #101522;
  padding-bottom: 10px;
}

.inner-packages span h4 {
  font-size: 30px;
  color: #101522;
  font-weight: 800;
  max-width: 50%;
  text-transform: uppercase;
}
#PackageModal h3.title{
  text-transform: uppercase;
}
.inner-packages span strong {
  transition: 0.5s;
  font-size: 60px;
  color: #ed9022;
  font-weight: 800;
}

.inner-packages p {
  font-size: 18px;
  color: #101522;
  font-weight: 500;
  padding-top: 15px;
}

.inner-packages ul {
  padding: 10px 0 20px;
}

.inner-packages ul li {
  gap: 5px;
  color: #101522;
  font-size: 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.inner-packages ul li i {
  margin-right: 10px;
  color: rgba(var(--theme-color), 1);
  transition: 0.5s;
}

.inner-packages ul li i.fa-check-circle:before {
  content: "\f058";
  background: black;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-packages .an-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.inner-packages .an-btn-wrapper a {
  width: 100%;
  text-align: center;
  min-width: auto;
  color: black;
  border: 1px solid;
  text-align: center;
  justify-content: center;
}
.service-slider-top .screen-slider .screen{
  width: 200px !important;
}
.service-slider-top .swiper-wrapper{
  justify-content: center;
}

.inner-packages:hover {
  background: rgba(var(--theme-color), 1);
}

.inner-packages:hover ul li i {
  color: black;
}

.inner-packages:hover ul li i.fa-check-circle:before {
  background: white;
}

.inner-packages:hover .an-btn-wrapper .an-primary-btn.dark {
  background: black;
  color: white;
}

.innerCoreFeatures {}

.innerCoreFeatures  h4 {
    font-size: 24px;
    color: white;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: inherit;
}

.innerCoreFeatures p {
    color: white;
    line-height: inherit;
}
.inner-packages:hover span strong {
  color: black;
}
section.aboutSection {
  padding: 100px 0;
}
.color-black{
  color: black !important;
}
.innerCoreFeatures ul{
  list-style: disc;
  padding-left: 20px;
}
.innerCoreFeatures ul li{
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}
.innerCoreFeatures ul li::before {
    content: '';
    position: absolute;
    background: #ed9022;
    width: 10px;
    height: 10px;
    left: -15px;
    top: 6px;
    border-radius: 50%;
}
footer ul li {
  margin-bottom: 10px;
  padding-left: 0;
  display: block;
  color: white;
}
footer ul li a{
  color: var(--white);
  font-size: 16px;
  transition: 0.5s;
}
footer h4{
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 22px;
  text-transform: capitalize;
}
footer ul li a:hover{
  color: #ed9022;
}

footer .socialIo{
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .socialIo li{
padding: 0 10px;
}
footer .socialIo li a{
  font-size: 24px;
}
footer .get-info-list {}
footer .get-info-list  li{
  margin-bottom: 15px;
  display: block;
}
footer .get-info-list  li a{
}
footer .get-info-list  li i{
  color: var(--white);
  padding-right: 11px;
}
.foot_links p{
  color: white;
  font-size: 16px;
}
.FootRows{
  padding-top: 100px;
}
.foot_links ul li a i{
  margin-right: 10px;
}

.ScreenSection{
  padding: 100px 0;
}

.fxscreensMain {
    margin-bottom: 20px;
    text-align: center;
}

.innerpages{
  height: 70vh;
}
.MainDownloads{
  text-align: center;
  margin: auto;
  display: block;
}
.MainDownloads img {
    width: 60%;
}
.MainDownloads span{
  display: block;
  font-size: 20px;
  color: black;
  font-weight: 700;
}

.ContactSection{
    padding: 60px 0;
    background: #ed9022;
}

.Contact-lefts {}
.Contact-lefts  h2{
    color: white;
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 800;
}
.Contact-lefts  .form-group{
    margin-bottom: 15px;
}
.Contact-lefts  input{
    height: 55px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 30px;
    color: white;
    padding-left: 20px;
}
.Contact-lefts  input::placeholder{
    color: var(--white);
    font-size: 16px;
}
.Contact-lefts  textarea{
    background-color: transparent;
    border: 2px solid white;
    border-radius: 10px;
    color: white;
    padding-left: 20px;
    padding-top: 10px;
}
.Contact-lefts  textarea::placeholder{
    color: var(--white);
    font-size: 16px;
}
.Contact-lefts  .Themebtn{
    background: transparent;
    border-radius: 30px;
    border: 2px solid white;
    transition: 0.5s;
    color: white;
    padding: 10px 30px;
}
.Contact-lefts  .Themebtn:hover{
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.Contact-lefts input:focus,
.Contact-lefts textarea:focus {
    background: transparent;
    color: white;
    outline: none;
    box-shadow: none;
    border-color: black;
}
.ContactRights {}
.ContactRights h6{
    font-size: 26px;
    font-weight: 700;
    color: white;
}
.ContactRights small{
    color: white;
    font-size: 16px;
}
.ContactRights ul{}
.ContactRights ul li{
        font-size: 1.125rem;
        width: 100%;
        /* padding-left: 4.5625rem; */
        position: relative;
        margin-top: 1.75rem;
}
.ContactRights ul li i {
    color: #ffffff;
}
.ContactRights ul li a{
    padding-left: 12px;
    color: white;
}

.Packages_Section .nav-tabs{
    justify-content: center;
    border: none;
    gap: 10px;
    margin-bottom: 50px;
}
.Packages_Section .nav-tabs .nav-item{}
.Packages_Section .nav-tabs .nav-item .nav-link{
    font-size: 20px;
    color: black;
    border: none;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 40px;
}
.Packages_Section .nav-tabs .nav-item .nav-link.active {
    background: orange;
    color: white;
}
.inner-packages ul li b{
  display: block;
}

.foot_links .themeColor{
  color: #ed9022;
}


@media (max-width:1366px){
  .inner-packages span h4 {
    font-size: 24px;
 
}
.inner-packages span strong{
  font-size: 50px;
}
.inner-packages ul li {
    font-size: 16px;
}
}
@media (max-width:1199px){
  .inner-packages {
    padding: 30px 15px;
}
    .inner-packages span h4 {
        font-size: 21px;
    }
}
@media (max-width:991px){
  .ContactRights {
    padding-top: 20px;
}
.home-wrapper .home-content {

    padding-top: calc(100px + 90 * (100vw - 320px) / 1600);
}
}
@media (max-width:767px){
  .navbar .logo {
    display: block;
    height: calc(45px + 15 * (100vw - 360px) / 1600);
}
header.sticky .logo-dark {
    display: block;
    height: calc(44px + 15 * (100vw - 320px) / 1600);
}
.home-wrapper .home-content .demo-button a img {
    width: 53%;
}
}
@media (max-width:575px){
  .btn {
    padding: calc(5px + 4 * (100vw - 320px) / 1600) calc(10px + 15 * (100vw - 320px) / 1600);
}
}





/* mfs css end */