/******************
    Variable css
********************/
:root {
  --theme-color: 254, 120, 46;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --dark-text: 23, 27, 39;
  --light-text: 100, 118, 131;
  --line-color: 229, 232, 234;
  --box-bg: 245, 246, 247;
  --error-color: 255, 75, 75;
  --success-color: 39, 175, 77;
  --secondary-color: 255, 196, 18;
}

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

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

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

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

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

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

.dark-text {
  color: rgba(var(--dark-text), 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);
}

h1 {
  font-size: calc(17px + 33 * (100vw - 320px) / 1600);
  line-height: 1;
  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(14px + 6 * (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(5px + 5 * (100vw - 320px) / 1600) calc(8px + 8 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  border-radius: 6px;
  font-weight: 500;
  font-size: calc(12px + 6 * (100vw - 320px) / 1600);
}
.btn.solid-btn {
  color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--white), 1);
}
.btn.solid-btn:active {
  background-color: rgba(var(--white), 1) !important;
  color: rgba(var(--theme-color), 1) !important;
  border-color: rgba(var(--white), 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.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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn.success-btn .icon {
  --Iconsax-Color: rgba(var(--white), 1);
}
.btn.btn-wide {
  padding: calc(5px + 5 * (100vw - 320px) / 1600) calc(20px + 20 * (100vw - 320px) / 1600);
}
.btn.purchase-btn {
  padding: calc(6px + 6 * (100vw - 320px) / 1600) calc(10px + 20 * (100vw - 320px) / 1600);
  color: rgba(var(--theme-color), 1);
  background-color: rgba(var(--theme-color), 0.1);
  border: 1px solid rgba(var(--theme-color), 1);
  border-radius: 25px;
}
.btn.purchase-btn:hover {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
}
.btn.purchase-btn:active {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
  border-color: rgba(var(--theme-color), 1);
}
.btn.demo-btn {
  padding: calc(8px + 4 * (100vw - 320px) / 1600) calc(15px + 15 * (100vw - 320px) / 1600);
  border-radius: 30px;
}

/*========================
    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 mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
/***************************
    Title css 
****************************/
.title {
  text-align: center;
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
}
.title h2 {
  font-weight: 700;
  font-size: calc(22px + 8 * (100vw - 320px) / 1600);
  color: rgba(var(--dark-text), 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-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  line-height: 1.5;
  color: #818181;
}
@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);
}
header.sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
}
header.sticky::after {
  top: 0;
}
header.sticky .navbar .navbar-toggler .navbar-toggler-icon {
  border: 1px solid rgba(var(--dark-text), 1);
}
header.sticky .navbar .navbar-toggler .navbar-toggler-icon .icon {
  --Iconsax-Color: rgba(var(--dark-text), 1);
}
header.sticky .navbar .logo {
  display: block;
  width: calc(120px + 30 * (100vw - 320px) / 1600);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header.sticky .navbar .logo-white {
  display: none;
}
header.sticky .navbar-nav .nav-item .nav-link {
  color: rgba(var(--light-text), 1);
}
header.sticky .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  z-index: -1;
  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);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.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: none;
}
.navbar .logo-white {
  display: block;
  width: calc(120px + 30 * (100vw - 320px) / 1600);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.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(5px + 10 * (100vw - 320px) / 1600);
  background-image: none;
}
.navbar .navbar-toggler .navbar-toggler-icon .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: 16px;
  padding: 5px;
}
.navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    background-color: rgba(var(--white), 1);
    color: rgba(var(--white), 1);
    padding: 15px 0;
    padding-left: 10px;
    margin-top: 8px;
    border-radius: 8px;
  }
}
.navbar .navbar-collapse.show .navbar-nav .nav-item .nav-link {
  color: rgba(var(--light-text), 1);
}
.navbar .navbar-collapse.show .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
.navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(10px + 20 * (100vw - 320px) / 1600);
}
.navbar .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  color: rgba(var(--white), 0.5);
  font-weight: 500;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  padding: 0;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--white), 1);
}

/***********************
    home section 
************************/
.home-wrapper {
  background-image: url(../../assets/images/background/home-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.home-wrapper .home-content {
  height: 100%;
  padding-block: calc(50px + 100 * (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-color: rgba(var(--secondary-color), 0.1);
  border-radius: 26px;
}
.home-wrapper .home-content .service-tag h6 {
  font-size: 18px;
  font-family: "Caveat", cursive;
  color: rgba(var(--secondary-color), 1);
}
.home-wrapper .home-content h1 {
  width: 80%;
  margin-top: 8px;
  color: rgba(var(--white), 1);
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media (max-width: 991px) {
  .home-wrapper .home-content h1 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .home-wrapper .home-content h1 {
    width: 75%;
  }
}
@media (max-width: 576px) {
  .home-wrapper .home-content h1 {
    width: 100%;
  }
}
.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);
}
.home-wrapper .home-content .home-info {
  margin-top: calc(20px + 30 * (100vw - 320px) / 1600);
}
.home-wrapper .home-content .home-info li {
  padding-bottom: calc(10px + 5 * (100vw - 320px) / 1600);
}
.home-wrapper .home-content .home-info li:last-child {
  padding-bottom: 0;
}
.home-wrapper .home-content .home-info li .factors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(10px + 5 * (100vw - 320px) / 1600);
}
@media (max-width: 576px) {
  .home-wrapper .home-content .home-info li .factors img {
    width: 20px;
  }
}
.home-wrapper .home-content .home-info li .factors h4 {
  color: rgba(var(--white), 1);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .home-wrapper .home-content .home-info li .factors h4 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  }
}
.home-wrapper .home-content .demo-button {
  margin-top: calc(30px + 40 * (100vw - 320px) / 1600);
}
.home-wrapper .home-img {
  padding-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.home-wrapper .home-img .mobile-img {
  width: 645px;
}
@media (max-width: 1200px) {
  .home-wrapper .home-img {
    height: auto;
  }
}
@media (max-width: 991px) {
  .home-wrapper .home-img {
    display: none;
  }
}

/***************************
    explore  css
****************************/
.explore-wrapper .custom-gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(20px + 25 * (100vw - 320px) / 1600) 0;
}
.explore-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(--line-color), 1);
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.explore-wrapper .custom-gap .card-body:hover {
  background-color: rgba(var(--theme-color), 0.1);
  border: 1px solid rgba(var(--line-color), 1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
.explore-wrapper .custom-gap .card-body:hover .icon-box {
  background-color: rgba(var(--theme-color), 1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.explore-wrapper .custom-gap .card-body:hover .card-logo {
  color: rgba(var(--white), 1);
  -webkit-filter: brightness(100);
          filter: brightness(100);
}
@media (max-width: 576px) {
  .explore-wrapper .custom-gap .card-body {
    text-align: center;
  }
}
.explore-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(--theme-color), 0.1);
  border-radius: 10px;
}
@media (max-width: 576px) {
  .explore-wrapper .custom-gap .card-body .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}
.explore-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;
}
.explore-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;
  margin-bottom: 12px;
  padding-bottom: 10px;
}
.explore-wrapper .custom-gap .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 .custom-gap .card-body h4::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.explore-wrapper .custom-gap .card-body .card-text {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgb(141, 143, 145);
  margin-top: 5px;
}
.explore-wrapper .more-button {
  margin-top: calc(25px + 25 * (100vw - 320px) / 1600);
}
.explore-wrapper .more-button a .icon {
  --Iconsax-Color: rgba(var(--white), 1);
}

/***************************
    booking  css
****************************/
.booking-wrapper {
  background-color: rgba(var(--box-bg), 1);
}
.booking-wrapper .booking-box {
  padding: calc(20px + 55 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  border: 1px solid rgba(var(--line-color), 1);
  border-radius: 10px;
}
.booking-wrapper .booking-box .booking-content-list .booking-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(10px + 5 * (100vw - 320px) / 1600);
  margin-bottom: calc(20px + 40 * (100vw - 320px) / 1600);
}
.booking-wrapper .booking-box .booking-content-list .booking-content:first-child .booking-img::after {
  content: none;
}
.booking-wrapper .booking-box .booking-content-list .booking-content:last-child {
  margin-bottom: 0;
}
.booking-wrapper .booking-box .booking-content-list .booking-content .booking-img {
  position: relative;
  height: calc(50px + 35 * (100vw - 320px) / 1600);
  width: calc(50px + 35 * (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;
  border: 1px dashed rgba(var(--theme-color), 1);
  border-radius: 100%;
}
.booking-wrapper .booking-box .booking-content-list .booking-content .booking-img::after {
  content: "";
  position: absolute;
  background-image: url(../images/svg/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 10px;
  height: 100%;
  display: block;
  left: 50%;
  bottom: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1440px) {
  .booking-wrapper .booking-box .booking-content-list .booking-content .booking-img::after {
    bottom: 70px;
  }
}
@media (max-width: 1399px) {
  .booking-wrapper .booking-box .booking-content-list .booking-content .booking-img::after {
    bottom: 65px;
  }
}
@media (max-width: 1199px) {
  .booking-wrapper .booking-box .booking-content-list .booking-content .booking-img::after {
    bottom: 56px;
  }
}
@media (max-width: 1024px) {
  .booking-wrapper .booking-box .booking-content-list .booking-content .booking-img::after {
    bottom: 55px;
  }
}
@media (max-width: 576px) {
  .booking-wrapper .booking-box .booking-content-list .booking-content .booking-img::after {
    bottom: 51px;
  }
}
@media (max-width: 425px) {
  .booking-wrapper .booking-box .booking-content-list .booking-content .booking-img::after {
    display: none;
  }
}
.booking-wrapper .booking-box .booking-content-list .booking-content .booking-img .booking-icon-box {
  height: calc(40px + 35 * (100vw - 320px) / 1600);
  width: calc(40px + 35 * (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;
  background-color: rgba(var(--theme-color), 0.1);
  border-radius: 100%;
}
.booking-wrapper .booking-box .booking-content-list .booking-content .booking-img .booking-icon-box .icon {
  --Iconsax-Color: rgba(var(--theme-color), 1);
  --Iconsax-Size: calc(20px + (35 - 20) * ((100vw - 320px) / (1920 - 320)));
}
.booking-wrapper .booking-box .booking-content-list .booking-content .booking-details {
  width: calc(100% - (50px + 35 * (100vw - 320px) / 1600) - (10px + 5 * (100vw - 320px) / 1600));
}
.booking-wrapper .booking-box .booking-content-list .booking-content .booking-details h5 {
  font-weight: 500;
  color: rgba(var(--dark-text), 1);
}
.booking-wrapper .booking-box .booking-content-list .booking-content .booking-details p {
  margin-top: calc(5px + 5 * (100vw - 320px) / 1600);
  font-weight: 400;
  color: rgba(var(--light-text), 1);
}
.booking-wrapper .booking-vector {
  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;
}

/***********************
    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: calc(375px + 50 * (100vw - 320px) / 1600);
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
  padding-top: calc(20px + 70 * (100vw - 320px) / 1600);
}

.service-slider-top {
  margin-top: -196px;
  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(--dark-text), 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: 30%;
}
@media (max-width: 1199px) {
  .core-features-wrapper .title p {
    text-align: center;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .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% - 40px);
  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);
}
@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);
  }
}
@media (max-width: 576px) {
  .core-features-wrapper .core-feature-box {
    width: calc(100% - 20px);
  }
}
.core-features-wrapper .core-feature-box .feature-icon-box {
  position: absolute;
  width: 60px;
  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;
  margin-inline: auto;
  z-index: 0;
  background-color: #170b03;
  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: radial-gradient(43.44% 43.44% at 22.95% 11.48%, #ffba8d 0%, #ff8333 100%);
  border-radius: 100%;
  z-index: -1;
}
.core-features-wrapper .core-feature-box .feature-icon-box .icon {
  width: calc(16px + 8 * (100vw - 320px) / 1600);
  height: calc(16px + 8 * (100vw - 320px) / 1600);
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.core-features-wrapper .core-feature-box .feature-details {
  padding-left: 40px;
  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(14px + 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(--dark-text), 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;
}
.features-wrapper .custom-gap .line {
  position: absolute;
  width: 90px;
  top: 10px;
  right: 20px;
  -webkit-animation: mover 1s infinite alternate;
          animation: mover 1s infinite alternate;
}

/***********************
    app section 
************************/
.app-wrapper {
  background-image: url(../images/background/app-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}
.app-wrapper .title h2 {
  margin-bottom: 10px;
}
.app-wrapper .title h2 span::after {
  content: none;
}
.app-wrapper .app-img-part {
  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;
  height: 100%;
}
.app-wrapper .app-img-part .mobile-img {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .app-wrapper .app-img-part {
    display: none;
  }
}
.app-wrapper .app-feature {
  padding-block: calc(20px + 30 * (100vw - 320px) / 1600);
  padding-inline: 20px 5px;
}
.app-wrapper .app-feature .app-feature-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(8px + 112 * (100vw - 320px) / 1600);
}
.app-wrapper .app-feature .app-feature-content.left-side-content {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 992px) {
  .app-wrapper .app-feature .app-feature-content.left-side-content {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}
.app-wrapper .app-feature .app-feature-content.right-side-content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 992px) {
  .app-wrapper .app-feature .app-feature-content.right-side-content {
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
}
.app-wrapper .app-feature .app-feature-content .core-feature-box {
  margin-top: 0;
  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;
}
@media (max-width: 1700px) and (min-width: 1400px) {
  .app-wrapper .app-feature .app-feature-content .core-feature-box {
    margin-inline: calc(5px + 20 * (100vw - 1400px) / 300);
  }
}
@media (max-width: 1050px) and (min-width: 992px) {
  .app-wrapper .app-feature .app-feature-content .core-feature-box {
    margin-inline: calc(5px + 20 * (100vw - 992px) / 408);
  }
}
.app-wrapper .app-feature .app-feature-content .core-feature-box .feature-icon-box {
  position: absolute;
  width: 60px;
  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;
  margin-inline: auto;
  margin-left: -30px;
  background-color: #170b03;
  border-radius: 100%;
  z-index: 0;
}
.app-wrapper .app-feature .app-feature-content .core-feature-box .feature-icon-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border-radius: 100%;
  z-index: -1;
  background: radial-gradient(43.44% 43.44% at 22.95% 11.48%, #ffba8d 0%, #ff8333 100%);
}
.app-wrapper .app-feature .app-feature-content .core-feature-box .feature-icon-box .icon {
  width: calc(16px + 8 * (100vw - 320px) / 1600);
  height: calc(16px + 8 * (100vw - 320px) / 1600);
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.app-wrapper .app-feature .app-feature-content .core-feature-box .feature-details {
  padding-left: 40px;
  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;
}
.app-wrapper .app-feature .app-feature-content .core-feature-box h4 {
  font-size: calc(14px + 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;
}
.app-wrapper .app-feature .app-feature-content .core-feature-box.right-side {
  padding: 10px 40px 10px 10px;
}
@media (max-width: 576px) {
  .app-wrapper .app-feature .app-feature-content .core-feature-box.right-side {
    padding: 10px 10px 10px 40px;
  }
}
.app-wrapper .app-feature .app-feature-content .core-feature-box.right-side .feature-icon-box {
  margin-right: -30px;
  right: 0;
}
@media (max-width: 576px) {
  .app-wrapper .app-feature .app-feature-content .core-feature-box.right-side .feature-icon-box {
    margin-inline: -30px 0;
    left: 0;
    right: unset;
  }
}
.app-wrapper .app-feature .app-feature-content .core-feature-box.right-side .feature-details {
  margin-right: -30px;
  padding-right: 40px;
  padding-left: unset;
}
@media (max-width: 576px) {
  .app-wrapper .app-feature .app-feature-content .core-feature-box.right-side .feature-details {
    margin-inline: -30px 0;
    padding-inline: 40px 0;
    padding-right: unset;
  }
}
.app-wrapper .app-feature .app-feature-content .core-feature-box.app-feature-1 {
  position: absolute !important;
  left: 19%;
  top: 265px;
}
.app-wrapper .app-feature .app-feature-content .core-feature-box.app-feature-2 {
  position: absolute !important;
  left: 11%;
  top: 505px;
}
.app-wrapper .app-feature .app-feature-content .core-feature-box.app-feature-3 {
  position: absolute !important;
  left: 18%;
  bottom: 95px;
}
.app-wrapper .app-feature .app-feature-content .core-feature-box.app-feature-4 {
  position: absolute !important;
  right: 19%;
  top: 265px;
}
.app-wrapper .app-feature .app-feature-content .core-feature-box.app-feature-5 {
  position: absolute !important;
  right: 11%;
  top: 505px;
}
.app-wrapper .app-feature .app-feature-content .core-feature-box.app-feature-6 {
  position: absolute !important;
  right: 18%;
  bottom: 95px;
}

/***********************
    beneficial section 
************************/
.beneficial-content h2 {
  font-weight: 700;
  font-size: calc(24px + 8 * (100vw - 320px) / 1600);
  color: rgba(var(--dark-text), 1);
}
.beneficial-content h2 span {
  position: relative;
  color: rgba(var(--theme-color), 1);
  display: inline-block;
}
.beneficial-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: 576px) {
  .beneficial-content h2 span::after {
    content: none;
  }
}
@media (max-width: 991px) {
  .beneficial-content h2 {
    text-align: center;
    width: 100%;
  }
}
.beneficial-content p {
  width: 80%;
  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) {
  .beneficial-content p {
    width: 100%;
    text-align: center;
  }
}
.beneficial-content .beneficial-info {
  margin-top: calc(20px + 30 * (100vw - 320px) / 1600);
}
.beneficial-content .beneficial-info li {
  padding-bottom: calc(10px + 5 * (100vw - 320px) / 1600);
}
.beneficial-content .beneficial-info li:last-child {
  padding-bottom: 0;
}
.beneficial-content .beneficial-info li .factors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(10px + 5 * (100vw - 320px) / 1600);
}
.beneficial-content .beneficial-info li .factors .tick-icon {
  width: 30px;
  height: 30px;
}
@media (max-width: 576px) {
  .beneficial-content .beneficial-info li .factors img {
    width: 20px;
  }
}
.beneficial-content .beneficial-info li .factors h6 {
  width: calc(100% - 30px);
  color: rgba(var(--dark-text), 1);
  font-weight: 400;
}
@media (max-width: 1400px) {
  .beneficial-content .beneficial-info li .factors h6 {
    font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  }
}
.beneficial-content .more-button {
  margin-top: calc(20px + 40 * (100vw - 320px) / 1600);
}

.beneficial-img {
  width: 100%;
}
.beneficial-img .img {
  width: calc(250px + 400 * (100vw - 320px) / 1600);
}

/***********************
    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.5);
}
.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 {
  position: relative;
  background-color: #120a05;
  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: #818181;
  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(20px + 30 * (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.8;
  color: rgba(var(--white), 1);
}
.footer-section .rating-content p span {
  line-height: 1;
}
.footer-section .rating-content p span .star {
  line-height: 1;
  width: calc(16px + 8 * (100vw - 320px) / 1600);
  height: calc(16px + 8 * (100vw - 320px) / 1600);
}
.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);
}
/*# sourceMappingURL=style.css.map */