/******************
    Variable css
********************/
:root {
  --theme-color: 124, 87, 255;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --dark-text: 39, 39, 64;
  --light-text: 147, 147, 159;
  --line-color: 223, 223, 226;
  --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(30px + 70 * (100vw - 320px) / 1600);
}

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

.custom-container {
  padding: 0 calc(15px + 145 * (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: 1600px) {
  .container {
    max-width: 1560px;
  }
}
/************************ 
    Typography css 
***********************/
body {
  position: relative;
  font-family: "Outfit", sans-serif;
  background-blend-mode: screen;
  background: rgba(var(--white), 1);
}

h1 {
  font-family: "Bakbak One", sans-serif;
  font-size: calc(22px + 28 * (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;
}

/*********************
    Button css 
**********************/
.btn {
  padding: calc(8px + 2 * (100vw - 320px) / 1600) calc(15px + 5 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: calc(12px + 6 * (100vw - 320px) / 1600);
  border-radius: 6px;
  white-space: nowrap;
}
.btn.outline-btn {
  color: rgba(var(--theme-color), 1);
  background-color: transparent;
  border: 1px solid rgba(var(--theme-color), 1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.btn.outline-btn:hover {
  background-color: rgba(var(--theme-color), 1) !important;
  color: rgba(var(--white), 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.purchase-btn {
  color: rgba(var(--dark-text), 1);
  background-color: rgb(236, 236, 236);
  border-radius: 6px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.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);
}

/*========================
    animation CSS start
==========================*/
@-webkit-keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes mover {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/*========================
    tap to top CSS start
==========================*/
.scroll-to-top {
  z-index: 4;
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: calc(40px + 20 * (100vw - 320px) / 1600);
  height: calc(40px + 20 * (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: 0.4s ease;
  transition: 0.4s 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 {
  color: rgba(var(--white), 1);
}

.play-btn {
  z-index: 5;
  position: fixed;
  right: 20px;
  bottom: 100px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: rgba(var(--white), 1);
  -webkit-box-shadow: 4px 4px 7px 4px rgba(145, 145, 145, 0.2);
          box-shadow: 4px 4px 7px 4px rgba(145, 145, 145, 0.2);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  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: none;
}
@media (max-width: 767px) {
  .play-btn {
    width: 50px;
    height: 50px;
  }
}
.play-btn img {
  width: 25px;
}
@media (max-width: 767px) {
  .play-btn img {
    width: 20px;
  }
}

/***************************
    Title css 
****************************/
.title {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
}
.title h2 {
  font-size: calc(24px + 26 * (100vw - 320px) / 1600);
}
.title h3 {
  font-family: "Bakbak One", sans-serif;
  margin-bottom: 10px;
  margin-top: 4px;
  font-size: calc(24px + 12 * (100vw - 320px) / 1600);
}
.title p {
  width: 60%;
  color: rgba(var(--light-text), 1);
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  line-height: 1.5;
}
@media (max-width: 991px) {
  .title p {
    width: 100%;
  }
}
.title .small-title {
  font-family: "caveat", sans-serif;
  font-size: calc(14px + 6 * (100vw - 320px) / 1600);
  color: rgb(255, 165, 7);
}

/************************
    header section 
 ************************/
header {
  position: relative;
  width: 100%;
  padding-block: calc(10px + 10 * (100vw - 320px) / 1600);
  background-color: rgba(var(--white), 1);
  border-bottom: 1px solid rgba(var(--line-color), 1);
}
header.sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  border: none;
}
header.sticky::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  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;
}
header.sticky .navbar .navbar-toggler .navbar-toggler-icon i {
  color: rgba(var(--dark-text), 1);
}
header.sticky .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
header.sticky .navbar-nav .nav-item .nav-link:active {
  color: rgba(var(--theme-color), 1);
}
header.sticky .navbar-nav .nav-item .nav-link:hover {
  color: rgba(var(--theme-color), 1);
}

.navbar {
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar .btn {
  margin-left: auto;
}
.navbar .logo {
  height: calc(35px + 15 * (100vw - 320px) / 1600);
}
.navbar .navbar-toggler {
  padding: 0;
  border: 0;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  width: auto;
  height: auto;
  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-right: calc(10px + 10 * (100vw - 320px) / 1600);
  color: rgba(var(--dark-text), 1);
  background-image: none;
}
.navbar .navbar-toggler .navbar-toggler-icon .icon {
  color: rgba(var(--dark-text), 1);
  font-size: 20px;
  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);
    margin-top: 8px;
    border-radius: 8px;
  }
}
.navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(10px + 32 * (100vw - 320px) / 1600);
}
.navbar .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  color: rgba(var(--light-text), 1);
  font-weight: 500;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  padding: 0;
}
.navbar .navbar-nav .nav-item.active {
  color: rgba(var(--theme-color), 1);
}

/***********************
    home section 
************************/
.home-wrapper .home-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: calc(20px + 45 * (100vw - 320px) / 929);
  width: 100%;
  padding-top: calc(20px + 45 * (100vw - 320px) / 1600);
}
@media (max-width: 991px) {
  .home-wrapper .home-content {
    display: block;
    padding-top: 20px;
  }
}
.home-wrapper .home-content h1 {
  line-height: 1.2;
  color: rgba(var(--dark-text), 1);
}
.home-wrapper .home-content h5 {
  line-height: 1.3;
  font-weight: 400;
  color: rgba(var(--light-text), 1);
}
@media (max-width: 991px) {
  .home-wrapper .home-content h5 {
    text-align: left;
    margin-block: 10px;
  }
}
.home-wrapper .home-img {
  position: relative;
}
.home-wrapper .home-img .rocket {
  position: absolute;
  bottom: 170px;
  right: 70px;
  width: 15%;
  -webkit-animation: mover 2s infinite alternate;
          animation: mover 2s infinite alternate;
  -webkit-animation-delay: 500;
          animation-delay: 500;
}
@media (max-width: 1200px) {
  .home-wrapper .home-img .rocket {
    bottom: 100px;
    right: 40px;
  }
}
@media (max-width: 767px) {
  .home-wrapper .home-img .rocket {
    display: none;
  }
}

/***************************
    Feature css
****************************/
.features-wrapper {
  margin-top: calc(-45px + -40 * (100vw - 320px) / 1600);
}
@media (max-width: 576px) {
  .features-wrapper {
    margin-top: calc(0px + -45 * (100vw - 320px) / 1600);
  }
}
.features-wrapper .card-body {
  height: 100%;
  padding: calc(15px + 15 * (100vw - 320px) / 1600);
  border-radius: 10px;
  background-color: rgba(var(--theme-color), 0.1);
  border: 2px solid transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.features-wrapper .card-body:hover {
  background-color: rgba(var(--theme-color), 1);
}
.features-wrapper .card-body:hover .icon-box {
  background-color: rgba(var(--white), 1);
}
.features-wrapper .card-body:hover .card-logo {
  -webkit-filter: invert(0) brightness(0);
          filter: invert(0) brightness(0);
}
.features-wrapper .card-body:hover h4 {
  color: rgba(var(--white), 1);
}
.features-wrapper .card-body:hover p {
  color: rgba(var(--white), 0.6);
}
@media (max-width: 576px) {
  .features-wrapper .card-body {
    text-align: center;
  }
}
.features-wrapper .card-body .icon-box {
  width: calc(50px + 10 * (100vw - 320px) / 1600);
  height: calc(50px + 10 * (100vw - 320px) / 1600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(var(--theme-color), 1);
  border-radius: 10px;
}
@media (max-width: 576px) {
  .features-wrapper .card-body .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}
.features-wrapper .card-body .card-logo {
  width: calc(30px + 10 * (100vw - 320px) / 1600);
  height: calc(30px + 10 * (100vw - 320px) / 1600);
  -webkit-filter: invert(1) brightness(100);
          filter: invert(1) brightness(100);
  -o-object-fit: contain;
     object-fit: contain;
}
.features-wrapper .card-body h4 {
  margin-top: calc(10px + 10 * (100vw - 320px) / 1600);
  font-size: calc(18px + 4 * (100vw - 320px) / 1600);
  font-weight: 600;
  margin-bottom: 12px;
}
.features-wrapper .card-body .card-text {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgb(82, 82, 108);
  margin-top: 5px;
}

/***************************
   screenshots css
****************************/
.screenshots-section {
  position: relative;
  background-image: url(../../assets/images/background/device-bg.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.screenshots-section .device-contents {
  padding-top: calc(10px + 40 * (100vw - 320px) / 929);
}
.screenshots-section .device-contents h2 {
  font-family: "Bakbak One", sans-serif;
  font-size: calc(28px + 22 * (100vw - 320px) / 1600);
  color: rgba(var(--white), 1);
}
@media (max-width: 1024px) {
  .screenshots-section .device-contents h2 {
    width: 100%;
  }
}
.screenshots-section .device-contents .info-part {
  margin-top: 20px;
}
.screenshots-section .device-contents .info-part li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin-bottom: calc(10px + 5 * (100vw - 320px) / 1600);
}
.screenshots-section .device-contents .info-part li .arrow {
  width: calc(20px + 10 * (100vw - 320px) / 1600);
  margin-top: 6px;
}
.screenshots-section .device-contents .info-part li h6 {
  width: 90%;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  line-height: 1.5;
  color: rgba(var(--light-text), 0.8);
}

/***************************
   app-features css
****************************/
.app-features-sec {
  position: relative;
  overflow: hidden;
}
.app-features-sec .feature-box {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.app-features-sec .feature-box h3 {
  text-align: center;
  font-size: calc(16px + 8 * (100vw - 320px) / 1600);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-left: auto;
  margin-right: auto;
}
.app-features-sec .feature-box h3::before {
  width: 100%;
}
.app-features-sec .feature-box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.app-features-sec .feature-box .core-feature {
  width: calc(60px + 40 * (100vw - 320px) / 1600);
  height: calc(60px + 40 * (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), 1);
  margin-left: auto;
  margin-right: auto;
  border-radius: calc(10px + 20 * (100vw - 320px) / 1600);
  margin-bottom: calc(5px + 10 * (100vw - 320px) / 1600);
}
.app-features-sec .feature-box .core-feature .app-icons {
  width: calc(30px + 10 * (100vw - 320px) / 1600);
  height: calc(30px + 10 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
     object-fit: contain;
}
.app-features-sec .feature-box h5 {
  font-size: calc(13px + 4 * (100vw - 320px) / 1600);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

/***************************
   Footer css
****************************/
.footer-wrapper {
  position: relative;
  padding: calc(20px + 40 * (100vw - 320px) / 1600);
  background-image: url(../../assets/images/background/footer-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
@media (max-width: 576px) {
  .footer-wrapper {
    margin-top: 30px;
  }
}
.footer-wrapper .footer-content .footer-logo {
  position: absolute;
  width: calc(70px + 40 * (100vw - 320px) / 1600);
  height: calc(70px + 40 * (100vw - 320px) / 1600);
  top: calc(-35px + -15 * (100vw - 320px) / 1600);
  left: 50%;
  padding: calc(18px + 7 * (100vw - 320px) / 1600);
  border-radius: 100%;
  background-color: rgba(var(--theme-color), 1);
  -webkit-box-shadow: inset 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0px 0px 10px 10px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer-wrapper .footer-content .footer-logo .logo {
  width: calc(40px + 20 * (100vw - 320px) / 1600);
  height: calc(40px + 20 * (100vw - 320px) / 1600);
}
.footer-wrapper .footer-content h3 {
  color: rgba(var(--white), 1);
  font-size: calc(16px + 19 * (100vw - 320px) / 1600);
  width: 38%;
  line-height: 1.5;
  margin: 0 auto;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .footer-wrapper .footer-content h3 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .footer-wrapper .footer-content h3 {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */