/*=====================
    Variable css
==========================*/
:root {
  --theme-color: 59, 237, 178;
  --title-text: 127, 130, 138;
  --content-color: 175, 176, 182;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --bg-color: 245, 245, 245;
}

/*=====================
    Reset css 
==========================*/
section,
.section-t-space {
  padding-top: calc(36px + 74 * (100vw - 320px) / 1600);
}

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

/*=====================
    Typography css 
==========================*/
body {
  position: relative;
  font-family: "Outfit", sans-serif;
  background-blend-mode: screen;
  background: -webkit-gradient(linear, left bottom, left top, from(#0a0e17), to(#0a0e17));
  background: linear-gradient(0deg, #0a0e17, #0a0e17);
}
body::after {
  content: "";
  position: absolute;
  background-image: url(../images/background/body-after.png);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.65;
  background-attachment: fixed;
  background-size: cover;
}

h1 {
  font-weight: 500;
  font-size: calc(25px + 35 * (100vw - 320px) / 1600);
  line-height: calc(35px + 75 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

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

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

h4 {
  font-weight: 400;
  font-size: calc(14px + 6 * (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-solid {
  padding: calc(5px + 8 * (100vw - 320px) / 1600) calc(5px + 27 * (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-size: calc(12px + 3 * (100vw - 320px) / 1600);
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--black), 1);
  font-weight: 500;
  font-size: calc(16px + 4 * (100vw - 320px) / 1600);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.btn-solid:hover {
  background-color: rgba(var(--theme-color), 1);
  color: rgba(var(--black), 1);
}
.btn-solid.btn-wide {
  padding: calc(5px + 5 * (100vw - 320px) / 1600) calc(20px + 20 * (100vw - 320px) / 1600);
}
.btn-solid .purchase-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.btn-solid .purchase-btn .cart {
  position: relative;
  width: 28px;
  height: 28px;
}
.btn-solid .purchase-btn .cart::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -15px;
  border: 1px solid rgba(var(--content-color), 1);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 35%;
}

/*=====================
    Title css 
==========================*/
.title {
  margin-bottom: calc(20px + 20 * (100vw - 320px) / 1600);
}
.title h2 {
  font-size: calc(24px + 26 * (100vw - 320px) / 1600);
}
.title h3 {
  margin-bottom: 10px;
  font-size: calc(22px + 18 * (100vw - 320px) / 1600);
  font-weight: 600;
  color: rgba(var(--white), 1);
  line-height: 1.2;
  margin: 0;
}
.title p {
  width: 60%;
  color: rgba(var(--content-color), 1);
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-size: calc(13px + 7 * (100vw - 320px) / 1600);
  line-height: 1.5;
  margin-top: 4px;
}
@media (max-width: 991px) {
  .title p {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .title p {
    width: 100%;
  }
}
.title .small-title {
  color: rgba(var(--theme-color), 1);
  line-height: 1;
  font-weight: 500;
  font-size: calc(13px + 5 * (100vw - 320px) / 1600);
  margin-bottom: 4px;
}

/*=====================
    header section 
 ==========================*/
header {
  position: absolute;
  width: 100%;
  padding-top: calc(10px + 20 * (100vw - 320px) / 1600);
  z-index: 2;
}

.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 .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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar .navbar-toggler .navbar-toggler-icon i {
  padding: 3px;
}
.navbar .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1199px) {
  .navbar .navbar-collapse {
    background-color: rgba(var(--black), 1);
    color: rgba(var(--white), 1);
    padding: 13px 17px;
    margin-top: 8px;
    border-radius: 8px;
  }
}
.navbar .navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: calc(30px + 20 * (100vw - 992px) / 928);
  width: 100%;
  padding-right: calc(9px + 23 * (100vw - 992px) / 928);
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: rgba(var(--white), 1);
  font-weight: 300;
  font-size: 20px;
  padding: 0;
  white-space: nowrap;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: rgba(var(--theme-color), 1);
}
.navbar .navbar-nav .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid rgba(var(--theme-color), 1);
  width: 20px;
  bottom: 0;
  left: 0;
}
.navbar .navbar-nav .support-res button {
  font-size: 20px;
  padding: 0;
  white-space: nowrap;
}

/*=====================
    home section 
==========================*/
.home-wrapper {
  background-image: url(../images/background/home-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding-top: calc(68px + 14 * (100vw - 1400px) / 520);
}
@media (max-width: 1400px) {
  .home-wrapper {
    padding-top: 68px;
  }
}
@media (max-width: 991px) {
  .home-wrapper {
    height: auto;
    padding: calc(75px + 50 * (100vw - 320px) / 1600) 0 calc(50px + 50 * (100vw - 320px) / 1600);
  }
}
.home-wrapper h1 {
  color: rgba(var(--white), 1);
  margin-bottom: calc(10px + 30 * (100vw - 320px) / 1600);
  line-height: 1.2;
  width: 100%;
  font-size: calc(25px + 30 * (100vw - 320px) / 1600);
}
.home-wrapper p {
  color: rgba(var(--content-color), 1);
  width: 90%;
  font-weight: 300;
  font-size: calc(13px + 7 * (100vw - 320px) / 1600);
}
@media (max-width: 992px) {
  .home-wrapper p {
    width: 100%;
  }
}
.home-wrapper .social-store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(13px + 9 * (100vw - 320px) / 1600);
}
.home-wrapper .social-store .google-play {
  width: calc(130px + 80 * (100vw - 320px) / 1600);
  margin-top: calc(15px + 40 * (100vw - 320px) / 1600);
}
.home-wrapper .home-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: calc(160px + 70 * (100vw - 991px) / 929) 0 calc(160px + 70 * (100vw - 991px) / 929);
}
@media (max-width: 991px) {
  .home-wrapper .home-content {
    padding: 0;
  }
}
.home-wrapper .home-content .btn-solid {
  margin-top: 15px;
}
@media (max-width: 992px) {
  .home-wrapper .home-content {
    width: 100%;
    height: auto;
    padding-top: 0;
  }
}
.home-wrapper .home-content .title-sm {
  color: rgba(var(--secondary-color), 1);
}
.home-wrapper .home-content .home-info {
  margin-top: calc(20px + 30 * (100vw - 320px) / 1600);
  width: 80%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media (max-width: 420px) {
  .home-wrapper .home-content .home-info {
    width: 100%;
  }
}
.home-wrapper .home-content .home-info li .factors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(8px + 4 * (100vw - 320px) / 1600);
  padding-bottom: calc(15px + 7 * (100vw - 320px) / 1600);
}
.home-wrapper .home-content .home-info li .factors .factors-icon {
  width: 23px;
  height: 23px;
}
@media (max-width: 576px) {
  .home-wrapper .home-content .home-info li .factors .factors-icon {
    width: 20px;
  }
}
.home-wrapper .home-content .home-info li .factors h4 {
  color: rgba(var(--white), 1);
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1400px) {
  .home-wrapper .home-content .home-info li .factors h4 {
    font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  }
}
.home-wrapper .home-content .vector {
  position: absolute;
  left: 25%;
  top: 20%;
}
@media (max-width: 992px) {
  .home-wrapper .home-content .vector {
    display: none;
  }
}

.home-img {
  position: relative;
  height: 100%;
  text-align: center;
  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-top: 135px;
}
@media (max-width: 992px) {
  .home-img {
    display: none;
  }
}
.home-img .phone {
  width: 92%;
  margin-top: -75px;
}
@media (max-width: 992px) {
  .home-img .phone {
    display: none;
  }
}
.home-img .robot1 {
  position: absolute;
  left: -30px;
  bottom: -80px;
}
@media (max-width: 1399px) {
  .home-img .robot1 {
    left: -5px;
    bottom: 25px;
    width: 30%;
  }
}
@media (max-width: 1199px) {
  .home-img .robot1 {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .home-img .robot1 {
    display: none;
  }
}
.home-img .home-vector1 {
  position: absolute;
  top: -90px;
  left: 50%;
  width: calc(85px + 10 * (100vw - 320px) / 1600);
  height: calc(85px + 10 * (100vw - 320px) / 1600);
}
.home-img .home-vector1::after {
  content: "";
  position: absolute;
  width: 80px;
  background-color: rgba(var(--theme-color), 1);
}
@media (max-width: 1750px) {
  .home-img .home-vector1 {
    top: -90px;
  }
}
@media (max-width: 1570px) {
  .home-img .home-vector1 {
    top: -45px;
  }
}
@media (max-width: 1375px) {
  .home-img .home-vector1 {
    top: -20px;
  }
}
@media (max-width: 1250px) {
  .home-img .home-vector1 {
    top: -5px;
  }
}
@media (max-width: 1200px) {
  .home-img .home-vector1 {
    display: none;
  }
}
.home-img .home-vector2 {
  position: absolute;
  top: 60%;
  left: 10%;
  width: calc(85px + 10 * (100vw - 320px) / 1600);
  height: calc(85px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 1450px) {
  .home-img .home-vector2 {
    top: 15%;
  }
}
@media (max-width: 1300px) {
  .home-img .home-vector2 {
    top: 20%;
    left: 10%;
  }
}
@media (max-width: 1200px) {
  .home-img .home-vector2 {
    display: none;
  }
}
.home-img .home-vector3 {
  position: absolute;
  top: 45%;
  right: -15px;
  width: calc(85px + 10 * (100vw - 320px) / 1600);
  height: calc(85px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 1200px) {
  .home-img .home-vector3 {
    display: none;
  }
}

/*=====================
    About us section 
==========================*/
.about-us-section .home-img {
  position: relative;
  height: 100%;
  text-align: center;
  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;
  width: 70%;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .about-us-section .home-img {
    display: none;
  }
}
.about-us-section .home-img .phone {
  width: 86%;
  margin: 0;
}
@media (max-width: 992px) {
  .about-us-section .home-img .phone {
    display: none;
  }
}
.about-us-section .home-img .robot1 {
  position: absolute;
  left: -30px;
  bottom: -80px;
}
@media (max-width: 1399px) {
  .about-us-section .home-img .robot1 {
    left: -5px;
    bottom: 25px;
    width: 30%;
  }
}
@media (max-width: 1199px) {
  .about-us-section .home-img .robot1 {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .about-us-section .home-img .robot1 {
    display: none;
  }
}
.about-us-section .home-img .home-vector1 {
  position: absolute;
  top: -90px;
  left: 50%;
  width: calc(85px + 10 * (100vw - 320px) / 1600);
  height: calc(85px + 10 * (100vw - 320px) / 1600);
}
.about-us-section .home-img .home-vector1::after {
  content: "";
  position: absolute;
  width: 80px;
  background-color: rgba(var(--theme-color), 1);
}
@media (max-width: 1750px) {
  .about-us-section .home-img .home-vector1 {
    top: -90px;
  }
}
@media (max-width: 1570px) {
  .about-us-section .home-img .home-vector1 {
    top: -45px;
  }
}
@media (max-width: 1375px) {
  .about-us-section .home-img .home-vector1 {
    top: -20px;
  }
}
@media (max-width: 1250px) {
  .about-us-section .home-img .home-vector1 {
    top: -5px;
  }
}
@media (max-width: 1200px) {
  .about-us-section .home-img .home-vector1 {
    display: none;
  }
}
.about-us-section .home-img .home-vector2 {
  position: absolute;
  top: 60%;
  left: 10%;
  width: calc(85px + 10 * (100vw - 320px) / 1600);
  height: calc(85px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 1450px) {
  .about-us-section .home-img .home-vector2 {
    top: 15%;
  }
}
@media (max-width: 1300px) {
  .about-us-section .home-img .home-vector2 {
    top: 20%;
    left: 10%;
  }
}
@media (max-width: 1200px) {
  .about-us-section .home-img .home-vector2 {
    display: none;
  }
}
.about-us-section .home-img .home-vector3 {
  position: absolute;
  top: 45%;
  right: -15px;
  width: calc(85px + 10 * (100vw - 320px) / 1600);
  height: calc(85px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 1200px) {
  .about-us-section .home-img .home-vector3 {
    display: none;
  }
}
.about-us-section h1 {
  color: rgba(var(--white), 1);
  line-height: 1.2;
  width: 100%;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.about-us-section p {
  color: rgb(123, 124, 119);
  width: 100%;
  font-weight: 300;
  font-size: calc(13px + 7 * (100vw - 320px) / 1600);
  margin-top: 7px;
  margin-bottom: 32px;
}
.about-us-section .home-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.about-us-section .home-content .btn-solid {
  margin-top: 15px;
}
@media (max-width: 992px) {
  .about-us-section .home-content {
    width: 100%;
    height: auto;
    padding-top: 0;
  }
}
.about-us-section .home-content .title-sm {
  color: rgba(var(--secondary-color), 1);
}
.about-us-section .home-content .home-info {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media (max-width: 420px) {
  .about-us-section .home-content .home-info {
    width: 100%;
  }
}
.about-us-section .home-content .home-info li .factors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(8px + 4 * (100vw - 320px) / 1600);
  padding-bottom: calc(15px + 7 * (100vw - 320px) / 1600);
}
.about-us-section .home-content .home-info li .factors .factors-icon {
  width: 23px;
  height: 23px;
  margin-top: 4px;
}
@media (max-width: 576px) {
  .about-us-section .home-content .home-info li .factors .factors-icon {
    width: 20px;
  }
}
.about-us-section .home-content .home-info li .factors h4 {
  color: rgba(var(--title-text), 1);
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1400px) {
  .about-us-section .home-content .home-info li .factors h4 {
    font-size: calc(13px + 3 * (100vw - 320px) / 1600);
  }
}
.about-us-section .home-content .google-play {
  width: calc(150px + 60 * (100vw - 320px) / 1600);
  margin-top: calc(15px + 40 * (100vw - 320px) / 1600);
}
.about-us-section .home-content .vector {
  position: absolute;
  left: 25%;
  top: 20%;
}
@media (max-width: 992px) {
  .about-us-section .home-content .vector {
    display: none;
  }
}

.home-img {
  position: relative;
  height: 100%;
  text-align: center;
  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-top: 135px;
}
@media (max-width: 992px) {
  .home-img {
    display: none;
  }
}
.home-img .phone {
  width: 70%;
  margin-top: -215px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .home-img .phone {
    display: none;
  }
}
.home-img .robot1 {
  position: absolute;
  left: -30px;
  bottom: -80px;
}
@media (max-width: 1399px) {
  .home-img .robot1 {
    left: -5px;
    bottom: 25px;
    width: 30%;
  }
}
@media (max-width: 1199px) {
  .home-img .robot1 {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .home-img .robot1 {
    display: none;
  }
}
.home-img .home-vector1 {
  position: absolute;
  top: -90px;
  left: 50%;
  width: calc(85px + 10 * (100vw - 320px) / 1600);
  height: calc(85px + 10 * (100vw - 320px) / 1600);
}
.home-img .home-vector1::after {
  content: "";
  position: absolute;
  width: 80px;
  background-color: rgba(var(--theme-color), 1);
}
@media (max-width: 1750px) {
  .home-img .home-vector1 {
    top: -90px;
  }
}
@media (max-width: 1570px) {
  .home-img .home-vector1 {
    top: -45px;
  }
}
@media (max-width: 1375px) {
  .home-img .home-vector1 {
    top: -20px;
  }
}
@media (max-width: 1250px) {
  .home-img .home-vector1 {
    top: -5px;
  }
}
@media (max-width: 1200px) {
  .home-img .home-vector1 {
    display: none;
  }
}
.home-img .home-vector2 {
  position: absolute;
  top: 60%;
  left: 10%;
  width: calc(85px + 10 * (100vw - 320px) / 1600);
  height: calc(85px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 1450px) {
  .home-img .home-vector2 {
    top: 15%;
  }
}
@media (max-width: 1300px) {
  .home-img .home-vector2 {
    top: 20%;
    left: 10%;
  }
}
@media (max-width: 1200px) {
  .home-img .home-vector2 {
    display: none;
  }
}
.home-img .home-vector3 {
  position: absolute;
  top: 45%;
  right: -15px;
  width: calc(85px + 10 * (100vw - 320px) / 1600);
  height: calc(85px + 10 * (100vw - 320px) / 1600);
}
@media (max-width: 1200px) {
  .home-img .home-vector3 {
    display: none;
  }
}

/*=====================
    Feature css
==========================*/
.features-wrapper {
  position: relative;
  background: rgba(var(--bg-color), 0.02);
}
.features-wrapper .design2 {
  position: absolute;
  top: 50px;
  right: 50px;
}
@media (max-width: 1400px) {
  .features-wrapper .design2 {
    display: none;
  }
}
.features-wrapper .robot2 {
  position: absolute;
  top: 126px;
  right: 50px;
  z-index: 2;
}
.features-wrapper .feature-body {
  padding: calc(28px + 12 * (100vw - 320px) / 1600) calc(12px + -2 * (100vw - 320px) / 1600);
  border-radius: 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(#0a0e17), to(#0a0e17));
  background: linear-gradient(0deg, #0a0e17, #0a0e17);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-align: center;
}
.features-wrapper .feature-body:hover {
  background: rgba(var(--theme-color), 0.05);
}
@media (max-width: 576px) {
  .features-wrapper .feature-body {
    text-align: center;
  }
}
.features-wrapper .feature-body .card-logo {
  width: calc(58px + 22 * (100vw - 320px) / 1600);
  height: calc(58px + 22 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 100%;
  background: rgba(var(--theme-color), 0.15);
  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;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.features-wrapper .feature-body .card-logo .card-icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.features-wrapper .feature-body h4 {
  font-size: calc(16px + 3 * (100vw - 320px) / 1600);
  color: rgba(var(--title-text), 1);
  font-weight: 400;
  margin-top: calc(16px + 5 * (100vw - 320px) / 1600);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.features-wrapper .feature-body p {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  color: rgba(var(--content-color), 1);
  line-height: 1.5;
  margin: calc(7px + 3 * (100vw - 320px) / 1600) auto 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*=====================
   screenshots css
==========================*/
.screenshots-section {
  position: relative;
  background: rgba(var(--bg-color), 0.02);
}
.screenshots-section .design1 {
  position: absolute;
  top: 135px;
  left: 60px;
}
@media (max-width: 992px) {
  .screenshots-section .design1 {
    display: none;
  }
}
.screenshots-section .robot2 {
  position: absolute;
  bottom: 0;
  right: 50px;
  z-index: 2;
}
@media (max-width: 1700px) {
  .screenshots-section .robot2 {
    width: 10%;
    right: 0;
  }
}
@media (max-width: 1440px) {
  .screenshots-section .robot2 {
    width: 12%;
    right: 10px;
  }
}
@media (max-width: 1024px) {
  .screenshots-section .robot2 {
    width: 15%;
  }
}
@media (max-width: 768px) {
  .screenshots-section .robot2 {
    display: none;
  }
}
.screenshots-section .screenshots-slider {
  background-color: rgba(var(--bg-color), 0.05);
  border-radius: 10px;
  padding: 20px;
}
.screenshots-section .screenshots-slider .screenshots-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.screenshots-section .screenshots-slider .screenshots-wrapper .screenshots {
  padding: 10px;
}
.screenshots-section .screenshots-slider .screenshots-wrapper .screenshots .screen-img {
  width: 100%;
  border-radius: 8px;
  -webkit-filter: drop-shadow(6px 8px 20px rgba(var(--black), 0.05));
          filter: drop-shadow(6px 8px 20px rgba(var(--black), 0.05));
}

/*=====================
    Pricing Section
==========================*/
.pricing-section .pricing-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.pricing-section .pricing-title h3 {
  font-size: calc(27px + 23 * (100vw - 320px) / 1600);
  font-weight: 600;
  color: rgba(var(--white), 1);
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}
.pricing-section .pricing-title p {
  width: 93%;
  color: rgba(var(--content-color), 1);
  font-weight: 400;
  font-size: calc(13px + 7 * (100vw - 320px) / 1600);
  line-height: 1.5;
  margin-top: 4px;
}
@media (max-width: 991px) {
  .pricing-section .pricing-title p {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .pricing-section .pricing-title p {
    width: 100%;
  }
}
.pricing-section .pricing-title .small-title {
  color: rgba(var(--theme-color), 1);
  line-height: 1;
  font-weight: 500;
  font-size: calc(13px + 5 * (100vw - 320px) / 1600);
  margin-bottom: 4px;
}
.pricing-section .pricing-box {
  border-radius: 10px;
  overflow: hidden;
}
.pricing-section .pricing-box .price-title {
  padding: calc(12px + 10 * (100vw - 320px) / 1600);
  background: rgba(var(--theme-color), 1);
  color: rgba(var(--black), 1);
  text-align: center;
}
.pricing-section .pricing-box .price-title h3 {
  font-size: calc(21px + 3 * (100vw - 320px) / 1600);
  font-weight: 600;
  line-height: unset;
}
@media (max-width: 768px) {
  .pricing-section .pricing-box .price-title h3 {
    font-size: calc(21px + 3 * (100vw - 320px) / 1600);
  }
}
.pricing-section .pricing-box .main-box {
  padding: calc(18px + 7 * (100vw - 320px) / 1600) calc(16px + 18 * (100vw - 320px) / 1600) calc(8px + 7 * (100vw - 320px) / 1600);
  text-align: center;
  background-color: rgba(var(--bg-color), 0.02);
}
.pricing-section .pricing-box .main-box h2 {
  position: relative;
  color: rgba(var(--title-text), 1);
  line-height: 1;
  font-weight: 600;
  margin-bottom: calc(15px + 5 * (100vw - 320px) / 1600);
  padding-bottom: calc(15px + 3 * (100vw - 320px) / 1600);
  font-size: calc(28px + 12 * (100vw - 320px) / 1600);
}
.pricing-section .pricing-box .main-box h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 63px;
  height: 5px;
  background-color: rgba(var(--content-color), 0.2);
  border-radius: 100px;
}
.pricing-section .pricing-box .main-box h2 span {
  font-size: calc(16px + 6 * (100vw - 320px) / 1600);
  font-weight: 400;
  color: rgba(var(--content-color), 1);
}
.pricing-section .pricing-box .main-box .pricing-list {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(4px + 5 * (100vw - 320px) / 1600);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pricing-section .pricing-box .main-box .pricing-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: calc(15px + 2 * (100vw - 320px) / 1600);
  width: 100%;
  position: relative;
  color: rgba(var(--content-color), 1);
}
.pricing-section .pricing-box .main-box .pricing-list li::before {
  content: "\eb81";
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.pricing-section .pricing-box .main-box .pricing-list li.disable {
  color: rgba(var(--title-text), 0.6);
}
.pricing-section .pricing-box .main-box .pricing-list li.disable::before {
  content: "\eb99";
  font-family: remixicon;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}
.pricing-section .pricing-box .main-box .pricing-btn {
  border: 1px solid rgba(221, 221, 221, 0.2588235294);
  width: 100%;
  padding: calc(9px + 3 * (100vw - 320px) / 1600);
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  border-radius: 9px;
  font-weight: 400;
  margin-top: 18px;
  background-color: rgba(var(--bg-color), 0.06);
  color: rgba(var(--white), 1);
}

/*=====================
    Testimonial Section
==========================*/
.testimonial-section {
  background-color: rgba(var(--bg-color), 0.02);
}
.testimonial-section .testimonial-box {
  padding: calc(29px + 13 * (100vw - 320px) / 1600) calc(18px + 14 * (100vw - 320px) / 1600) calc(18px + 14 * (100vw - 320px) / 1600);
  background: -webkit-gradient(linear, left bottom, left top, from(#0a0e17), to(#0a0e17));
  background: linear-gradient(0deg, #0a0e17, #0a0e17);
  border-radius: 13px;
  position: relative;
  z-index: 0;
}
.testimonial-section .testimonial-box .quote-icon {
  position: absolute;
  top: 10px;
  left: 15px;
  width: calc(52px + 8 * (100vw - 320px) / 1600);
  height: calc(52px + 8 * (100vw - 320px) / 1600);
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.05;
  z-index: -1;
}
.testimonial-section .testimonial-box p {
  font-size: calc(14px + 1 * (100vw - 320px) / 1600);
  line-height: 1.5;
  border-bottom: 1px solid rgba(221, 221, 221, 0.2588235294);
  padding-bottom: calc(16px + 8 * (100vw - 320px) / 1600);
  margin-bottom: calc(16px + 8 * (100vw - 320px) / 1600);
  color: #777;
}
.testimonial-section .testimonial-box .profile-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.testimonial-section .testimonial-box .profile-box .profile-image {
  width: calc(49px + 10 * (100vw - 320px) / 1600);
  height: calc(49px + 10 * (100vw - 320px) / 1600);
  border-radius: 100%;
  overflow: hidden;
}
.testimonial-section .testimonial-box .profile-box .profile-name h5 {
  font-size: calc(15px + 3 * (100vw - 320px) / 1600);
  margin-bottom: 4px;
  color: rgba(var(--title-text), 1);
}
.testimonial-section .testimonial-box .profile-box .profile-name h6 {
  margin: 0;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 320px) / 1600);
  color: rgba(var(--title-text), 1);
}

/*=====================
   Footer css
==========================*/
.footer-wrapper {
  position: relative;
  padding: calc(20px + 40 * (100vw - 320px) / 1600);
  width: 100%;
}
.footer-wrapper .robot3 {
  position: absolute;
  top: -150px;
  left: 29px;
  z-index: 0;
  width: 240px;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  height: 210px;
}
@media (max-width: 1700px) {
  .footer-wrapper .robot3 {
    width: 8%;
    top: -100px;
  }
}
@media (max-width: 1550px) {
  .footer-wrapper .robot3 {
    width: 12%;
    right: 10px;
  }
}
@media (max-width: 1400px) {
  .footer-wrapper .robot3 {
    width: 10%;
    top: -90px;
  }
}
@media (max-width: 1300px) {
  .footer-wrapper .robot3 {
    width: 15%;
  }
}
@media (max-width: 1200px) {
  .footer-wrapper .robot3 {
    width: 8%;
    top: -75px;
  }
}
@media (max-width: 992px) {
  .footer-wrapper .robot3 {
    display: none;
  }
}
.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%;
  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(--white), 1);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #202020;
  border: 2px solid rgba(var(--white), 1);
  -webkit-box-shadow: 0px 0px 12px rgba(var(--black), 0.05);
          box-shadow: 0px 0px 12px rgba(var(--black), 0.05);
}
.footer-wrapper .footer-content h3 {
  color: rgba(var(--white), 1);
  font-size: calc(16px + 19 * (100vw - 320px) / 1600);
  width: 100%;
  line-height: 1.5;
  margin: 0 auto;
  margin-top: 30px;
}
.footer-wrapper .footer-content h3 span {
  color: rgba(var(--theme-color), 1);
}

.scroll-to-top {
  z-index: 4;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: calc(40px + 10 * (100vw - 320px) / 1600);
  height: calc(40px + 10 * (100vw - 320px) / 1600);
  border-radius: 100%;
  background: rgba(var(--theme-color), 1);
  border: none;
  font-size: calc(20px + 15 * (100vw - 320px) / 1600);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(0);
          transform: scale(0);
  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(--black), 1);
  font-size: calc(22px + 6 * (100vw - 320px) / 1600);
}
/*# sourceMappingURL=style.css.map */