:root {
  --theme-color: 84, 101, 255;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --dark-text: 0, 22, 46;
  --light-text: 128, 139, 151;
  --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;
}
* {
  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(20px + 80 * (100vw - 320px) / 1600);
}
.theme-color {
  color: rgba(var(--theme-color), 1) !important;
}
.theme-bg {
  background-color: rgba(var(--theme-color), 1) !important;
}
.dark-text {
  color: rgba(var(--dark-text), 1) !important;
}
@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 #000;
  border-radius: 10px;
  padding: 12px;
  z-index: 3;
}
@media (max-width: 1350px) {
  .qr-btn .qr-code {
    display: none;
  }
}
body {
  position: relative;
  font-family: "DM Sans", sans-serif;
  background-blend-mode: screen;
  background: rgba(var(--white), 1);
}
body::-webkit-scrollbar {
  scrollbar-width: none;
  width: 0px;
}
h1 {
  font-size: calc(16px + 30 * (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(12px + 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;
}
.btn {
  padding: 11px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  border-radius: 30px;
  font-weight: 600;
  font-size: calc(15px + 2 * (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(--theme-color), 1);
  background-color: rgba(var(--theme-color), 0.1);
  border: 1px solid rgba(var(--theme-color), 1);
}
.btn.outline-btn:hover {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
}
.btn.outline-btn:active {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
  border-color: rgba(var(--theme-color), 1);
}
.btn.theme-btn {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--white), 1);
}
.btn.theme-btn:hover {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
}
.btn.theme-btn:active {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 1) !important;
  border-color: rgba(var(--theme-color), 1);
}
.btn.success-btn {
  background-color: rgba(var(--success-color), 1);
  color: rgba(var(--white), 1);
  display: -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;
}
.btn.portfolio-outline-btn {
  color: rgba(var(--white), 1);
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(var(--white), 1);
}
.btn.portfolio-outline-btn:hover {
  background-color: rgba(var(--white), 1) !important;
  color: rgba(var(--theme-color), 1) !important;
}
.btn.portfolio-outline-btn.btn-wide {
  padding: calc(5px + 5 * (100vw - 320px) / 1600)
    calc(20px + 20 * (100vw - 320px) / 1600);
}
.btn.demo-btn {
  padding: calc(8px + 4 * (100vw - 320px) / 1600)
    calc(15px + 15 * (100vw - 320px) / 1600);
  border-radius: calc(15px + 15 * (100vw - 320px) / 1600);
}
.btn.book {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  padding: 11px 25px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  color: rgba(var(--white), 0.8);
  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
  -webkit-animation: ring 4s 0.7s ease-in-out infinite;
  animation: ring 4s 0.7s ease-in-out infinite;
}
.btn.book:hover {
  color: rgba(var(--white), 1);
}
.btn.book:hover .iconsax {
  color: rgba(var(--white), 1);
}
.btn.book .iconsax {
  --Iconsax-Color: rgba(var(--white), 0.8);
  --Iconsax-Size: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
}
@-webkit-keyframes ring {
  3% {
    -webkit-transform: translate(9px);
    transform: translate(9px);
  }
  6% {
    -webkit-transform: translate(-9px);
    transform: translate(-9px);
  }
  8% {
    -webkit-transform: translate(6px);
    transform: translate(6px);
  }
  10% {
    -webkit-transform: translate(-6px);
    transform: translate(-6px);
  }
  13% {
    -webkit-transform: translate(3px);
    transform: translate(3px);
  }
  16%,
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes ring {
  3% {
    -webkit-transform: translate(9px);
    transform: translate(9px);
  }
  6% {
    -webkit-transform: translate(-9px);
    transform: translate(-9px);
  }
  8% {
    -webkit-transform: translate(6px);
    transform: translate(6px);
  }
  10% {
    -webkit-transform: translate(-6px);
    transform: translate(-6px);
  }
  13% {
    -webkit-transform: translate(3px);
    transform: translate(3px);
  }
  16%,
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
.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)));
}
@-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 {
  text-align: center;
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
}
.title h2 {
  font-weight: 700;
  font-size: calc(24px + 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: 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 {
  position: absolute;
  width: 100%;
  padding-block: calc(10px + 10 * (100vw - 320px) / 1600);
}
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);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  z-index: 3;
}
header.sticky .logo {
  display: none;
}
header.sticky .logo-dark {
  display: block;
  height: calc(30px + 9 * (100vw - 320px) / 1600);
}
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 .navbar-collapse {
  padding: 0;
}
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 .btn .iconsax {
  --Iconsax-Color: #fff;
  --Iconsax-Size: 19px;
}
.navbar .logo {
  display: block;
  height: calc(30px + 9 * (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;
}
.navbar .navbar-toggler .navbar-toggler-icon .icon {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320)));
  padding: 5px;
}
.navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.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);
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    background-color: rgba(var(--white), 1);
    color: rgba(var(--white), 1);
    padding: 15px;
    margin-top: 5px;
    border-radius: 8px;
  }
}
.navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(5px + 15 * (100vw - 320px) / 1600);
}
.navbar .navbar-nav .nav-item .nav-link {
  text-transform: capitalize;
  color: rgba(var(--light-text), 1);
  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);
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: rgba(var(--theme-color), 1);
}
@media (max-width: 575.98px) {
  .navbar .navbar-nav .nav-item .nav-link.book {
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    color: rgba(var(--dark-text), 0.8);
    font-size: calc(15px + 2 * (100vw - 320px) / 1600);
    -webkit-animation: ring 5s ease 2s infinite;
    animation: ring 5s ease 2s infinite;
  }
  .navbar .navbar-nav .nav-item .nav-link.book:hover {
    color: rgba(var(--dark-text), 1);
  }
  .navbar .navbar-nav .nav-item .nav-link.book:hover .iconsax {
    color: rgba(var(--dark-text), 1);
  }
  .navbar .navbar-nav .nav-item .nav-link.book .iconsax {
    --Iconsax-Color: rgba(var(--dark-text), 0.8);
    --Iconsax-Size: calc(17px + (20 - 17) * ((100vw - 320px) / (1920 - 320)));
  }
}
.home-wrapper {
  background-image: url(../../assets/images/background/home-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}
@media (max-width: 1399px) {
  .home-wrapper {
    height: auto;
  }
}
.home-wrapper .home-content {
  height: 100%;
  padding-block: calc(50px + 70 * (100vw - 320px) / 1600);
}
@media (max-width: 1199px) {
  .home-wrapper .home-content {
    padding-block: 30px;
  }
}
.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 {
  line-height: 1;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  font-family: "Caveat", cursive;
  color: rgba(var(--secondary-color), 1);
}
.home-wrapper .home-content h1 {
  width: 100%;
  margin-top: 8px;
  color: rgba(var(--white), 1);
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 2.6px;
  font-weight: 700;
}
.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 + 20 * (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.3;
  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(10px + 10 * (100vw - 320px) / 1600);
  margin-top: calc(20px + 30 * (100vw - 320px) / 1600);
}
.home-wrapper .home-content .demo-button i {
  --Iconsax-Color: rgba(var(--white), 1);
  --Iconsax-Size: calc(18px + (26 - 18) * ((100vw - 320px) / (1920 - 320)));
}
.home-wrapper .home-img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.home-wrapper .home-img .mobile-img {
  width: 100%;
}
@media (max-width: 991px) {
  .home-wrapper .home-img {
    display: none;
  }
}
.home-wrapper .home-img .laptop-img {
  background-image: url(../../assets/images/laptop.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 500px;
}
@media (max-width: 1199px) {
  .home-wrapper .home-img .laptop-img {
    display: none;
  }
}
.home-wrapper .home-img .user-app {
  position: absolute;
  top: 60px;
  left: -80px;
}
@media (max-width: 1400px) {
  .home-wrapper .home-img .user-app {
    display: none;
  }
}
.home-wrapper .home-img .provider-app {
  position: absolute;
  top: 10px;
  right: -60px;
}
@media (max-width: 1750px) {
  .home-wrapper .home-img .provider-app {
    top: 10px;
    width: 130px;
  }
}
@media (max-width: 1550px) {
  .home-wrapper .home-img .provider-app {
    display: none;
  }
}
.home-wrapper .home-img .arrow {
  position: absolute;
  bottom: 10px;
  left: 260px;
  width: 70px;
}
@media (max-width: 1400px) {
  .home-wrapper .home-img .arrow {
    bottom: 60px;
    left: 200px;
  }
}
@media (max-width: 1199px) {
  .home-wrapper .home-img .arrow {
    display: none;
  }
}
.home-wrapper .home-img .mobile-left {
  position: absolute;
  height: 380px;
  left: -30px;
  bottom: 80px;
  z-index: 2;
}
@media (max-width: 1700px) {
  .home-wrapper .home-img .mobile-left {
    height: 340px;
    left: -10px;
  }
}
@media (max-width: 1650px) {
  .home-wrapper .home-img .mobile-left {
    height: 300px;
    left: -10px;
    bottom: 110px;
  }
}
@media (max-width: 1500px) {
  .home-wrapper .home-img .mobile-left {
    bottom: 150px;
  }
}
@media (max-width: 1400px) {
  .home-wrapper .home-img .mobile-left {
    height: 260px;
  }
}
@media (max-width: 1300px) {
  .home-wrapper .home-img .mobile-left {
    height: 240px;
    bottom: 180px;
  }
}
@media (max-width: 1199px) {
  .home-wrapper .home-img .mobile-left {
    display: none;
  }
}
.home-wrapper .home-img .mobile-right {
  position: absolute;
  height: 380px;
  right: 0px;
  bottom: 80px;
  z-index: 2;
}
@media (max-width: 1700px) {
  .home-wrapper .home-img .mobile-right {
    height: 340px;
    right: 0;
  }
}
@media (max-width: 1650px) {
  .home-wrapper .home-img .mobile-right {
    height: 300px;
    bottom: 110px;
  }
}
@media (max-width: 1400px) {
  .home-wrapper .home-img .mobile-right {
    height: 260px;
  }
}
@media (max-width: 1300px) {
  .home-wrapper .home-img .mobile-right {
    height: 240px;
    bottom: 180px;
  }
}
@media (max-width: 1199px) {
  .home-wrapper .home-img .mobile-right {
    display: none;
  }
}
.home-wrapper h2 {
  position: absolute;
  bottom: 10px;
  left: 350px;
}
@media (max-width: 1400px) {
  .home-wrapper h2 {
    bottom: 60px;
    left: 280px;
  }
}
@media (max-width: 1199px) {
  .home-wrapper h2 {
    display: none;
  }
}
.home-wrapper h2 .text_1 {
  -webkit-animation: text1;
  animation: text1;
}
.home-wrapper h2 .text_2 {
  -webkit-animation: text2;
  animation: text2;
}
.home-wrapper h2 .text_1,
.home-wrapper h2 .text_2 {
  font-size: 28px;
  font-family: "Caveat", cursive;
  color: rgba(var(--secondary-color), 1);
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  -webkit-animation-duration: 8000ms;
  animation-duration: 8000ms;
  -webkit-animation-timing-function: steps(8, end);
  animation-timing-function: steps(8, end);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.home-wrapper h2 .text_1::after,
.home-wrapper h2 .text_2::after {
  content: "";
  position: absolute;
  right: 0;
  -webkit-animation: caret infinite;
  animation: caret infinite;
  -webkit-animation-duration: 9500ms;
  animation-duration: 9500ms;
  -webkit-animation-timing-function: steps(8, end);
  animation-timing-function: steps(8, end);
}
@-webkit-keyframes text2 {
  0%,
  50%,
  100% {
    width: 0;
  }
  60%,
  90% {
    width: 6em;
  }
}
@keyframes text2 {
  0%,
  50%,
  100% {
    width: 0;
  }
  60%,
  90% {
    width: 6em;
  }
}
@-webkit-keyframes text1 {
  0%,
  50%,
  100% {
    width: 0;
  }
  10%,
  40% {
    width: 7.5em;
  }
}
@keyframes text1 {
  0%,
  50%,
  100% {
    width: 0;
  }
  10%,
  40% {
    width: 7.5em;
  }
}
@-webkit-keyframes caret {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes caret {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.laptop-slider .swiper-slide {
  position: relative;
  height: 450px;
}
.laptop-slider .swiper-slide .screen-img {
  width: 663px;
  bottom: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  left: 395px;
  top: 12px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 1750px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 650px;
    left: 385px;
  }
}
@media (max-width: 1700px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 630px;
    left: 375px;
  }
}
@media (max-width: 1650px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 615px;
    left: 360px;
  }
}
@media (max-width: 1600px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 590px;
    left: 350px;
  }
}
@media (max-width: 1550px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 565px;
    left: 345px;
    top: 10px;
  }
}
@media (max-width: 1500px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 555px;
    left: 330px;
    top: 8px;
  }
}
@media (max-width: 1450px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 535px;
    left: 320px;
  }
}
@media (max-width: 1400px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 520px;
    left: 305px;
    top: 8px;
  }
}
@media (max-width: 1350px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 500px;
    left: 295px;
    top: 8px;
  }
}
@media (max-width: 1300px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 475px;
    left: 285px;
    top: 8px;
  }
}
@media (max-width: 1250px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 455px;
    left: 275px;
    top: 8px;
  }
}
@media (max-width: 1225px) {
  .laptop-slider .swiper-slide .screen-img {
    width: 445px;
    left: 270px;
  }
}
.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);
  cursor: pointer;
}
.explore-wrapper .custom-gap .card-body:hover .icon-box {
  background-color: rgba(var(--theme-color), 1);
}
.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: #8d8f91;
  margin-top: 5px;
}
.explore-wrapper .more-button {
  margin-top: calc(25px + 25 * (100vw - 320px) / 1600);
}
.demo-wrapper {
  background-image: url(../images/background/demo-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.demo-wrapper .custom-gap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(20px + 25 * (100vw - 320px) / 1600) 0;
}
.demo-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;
}
@media (max-width: 576px) {
  .demo-wrapper .custom-gap .card-body {
    text-align: center;
  }
}
.demo-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) {
  .demo-wrapper .custom-gap .card-body .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}
.demo-wrapper .custom-gap .card-body .icon-box.color1 {
  background: linear-gradient(151.88deg, #b18cff 16.01%, #9360ff 71.23%);
}
.demo-wrapper .custom-gap .card-body .icon-box.color2 {
  background: linear-gradient(145.84deg, #32daff 32.28%, #00b1d8 87.65%);
}
.demo-wrapper .custom-gap .card-body .icon-box.color3 {
  background: linear-gradient(153.82deg, #8a96ff 24.2%, #5465ff 80.01%);
}
.demo-wrapper .custom-gap .card-body .icon-box.color4 {
  background: linear-gradient(149.68deg, #5e9eff 31.76%, #1e78ff 82.77%);
}
.demo-wrapper .custom-gap .card-body .icon-box.color5 {
  background: linear-gradient(153.82deg, #48dd72 24.2%, #27af4d 80.01%);
}
.demo-wrapper .custom-gap .card-body .card-logo {
  width: calc(20px + 20 * (100vw - 320px) / 1600);
  height: calc(20px + 20 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
  object-fit: contain;
}
.demo-wrapper .custom-gap .card-body h4 {
  position: relative;
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  font-weight: 500;
  padding-bottom: calc(4px + 6 * (100vw - 320px) / 1600);
}
.demo-wrapper .custom-gap .card-body .card-text {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: #8d8f91;
}
.demo-wrapper .demo-img {
  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;
}
.demo-wrapper .demo-img .demo-vector {
  width: calc(260px + 30 * (100vw - 320px) / 1600);
}
@media (max-width: 991px) {
  .demo-wrapper .demo-img {
    display: none;
  }
}
.demo-wrapper .more-button {
  margin-top: calc(25px + 25 * (100vw - 320px) / 1600);
}
.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-wrapper {
  background-image: url(../images/background/screen-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 425px;
  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);
}
.admin-panel-section {
  background-color: rgba(var(--box-bg), 1);
}
.admin-panel-section .admin-panel-img {
  text-align: center;
}
.feature-section .features-tab {
  width: 100% !important;
  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;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 20px;
  overflow: auto;
  white-space: nowrap;
}
.feature-section .features-tab .nav-item .nav-link {
  width: 100%;
  padding: 12px 30px;
  font-weight: 500;
  font-size: 16px;
  color: rgba(var(--content-color), 1);
  background-color: rgba(var(--box-bg), 1);
  border-radius: 30px;
}
.feature-section .features-tab .nav-item .nav-link.active {
  background-color: rgba(var(--theme-color), 1);
  color: #fff;
  border-radius: 30px;
}
.feature-section .features-tab .nav-item .nav-link.active:hover {
  color: #fff;
}
.feature-section .features-tab .nav-item .nav-link:hover {
  color: rgba(var(--content-color), 1);
}
.feature-section .tab-content {
  margin-top: calc(20px + 30 * (100vw - 320px) / 1600);
}
.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);
}
@media (max-width: 425px) {
  .feature-section .feature-box .feature-box:hover {
    -webkit-transform: none;
    transform: none;
  }
}
.feature-section .feature-box .feature-image {
  padding: calc(10px + 10 * (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-radius: 8px;
}
.feature-section .feature-box .feature-image.color1 {
  background: #f9e9ff;
}
.feature-section .feature-box .feature-image.color2 {
  background: #e5f7fb;
}
.feature-section .feature-box .feature-image.color3 {
  background: #eef0ff;
}
.feature-section .feature-box .feature-image.color4 {
  background: #e8f1ff;
}
.feature-section .feature-box .feature-image.color5 {
  background: #e9f7ed;
}
.feature-section .feature-box .feature-image img {
  height: calc(240px + 100 * (100vw - 320px) / 1600);
  border-radius: calc(4px + 4 * (100vw - 320px) / 1600);
}
.feature-section .feature-box .feature-contain {
  margin-top: 10px;
}
.feature-section .feature-box .feature-contain h6 {
  text-transform: capitalize;
  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-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);
  }
}
.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: #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);
  border-radius: 100%;
  z-index: -1;
}
.core-features-wrapper .core-feature-box .feature-icon-box .icon-box.color1 {
  background: linear-gradient(151.88deg, #b18cff 16.01%, #9360ff 71.23%),
    linear-gradient(0deg, #e8f1ff, #e8f1ff);
}
.core-features-wrapper .core-feature-box .feature-icon-box .icon-box.color2 {
  background: linear-gradient(148.17deg, #e393ff 25.07%, #c622ff 81.41%),
    linear-gradient(0deg, #e9f7ed, #e9f7ed);
}
.core-features-wrapper .core-feature-box .feature-icon-box .icon-box.color3 {
  background: linear-gradient(149.68deg, #5e9eff 31.76%, #1e78ff 82.77%),
    linear-gradient(0deg, #e5f7fb, #e5f7fb);
}
.core-features-wrapper .core-feature-box .feature-icon-box .icon-box.color4 {
  background: linear-gradient(145.84deg, #32daff 32.28%, #00b1d8 87.65%),
    linear-gradient(130.51deg, #4dde75 16.15%, #27af4d 61.63%);
}
.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-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: #8d8f91;
  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-wrapper {
  background-image: url(../images/background/app-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  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: 50px;
  padding-inline: 25px 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;
  z-index: 0;
  background-color: #041322;
  border-radius: 100%;
  margin-left: -30px;
}
.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;
}
.app-wrapper
  .app-feature
  .app-feature-content
  .core-feature-box
  .feature-icon-box
  .icon {
  width: calc(35px + 10 * (100vw - 320px) / 1600);
  height: calc(35px + 10 * (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;
  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-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: 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);
}
.license-section {
  background-color: rgba(var(--box-bg), 1);
}
.license-section .cost-table {
  margin-bottom: 0;
}
.license-section .cost-table thead tr th {
  padding: calc(10px + 20 * (100vw - 320px) / 1600);
  font-size: calc(16px + 12 * (100vw - 320px) / 1600);
  font-weight: 700;
  line-height: 1.2;
  color: rgba(var(--theme-color), 1);
  border-bottom-width: 0;
}
.license-section .cost-table tbody tr:nth-of-type(odd) {
  background-color: rgba(var(--white), 1);
}
.license-section .cost-table tbody tr:nth-child(even) {
  background-color: rgba(var(--box-bg), 1);
}
.license-section .cost-table tbody tr td {
  padding: calc(10px + 20 * (100vw - 320px) / 1600);
  font-size: calc(13px + 9 * (100vw - 320px) / 1600);
  font-weight: 500;
  color: rgba(var(--dark-text), 1);
  border-bottom-width: 0;
}
.license-section .cost-table tbody tr td.free .icon {
  width: calc(20px + 10 * (100vw - 320px) / 1600);
  height: calc(20px + 10 * (100vw - 320px) / 1600);
}
.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 {
  background-image: url(../images/background/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  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(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 */
