/*=====================
  1.1 Reset CSS 
==========================*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
}

body {
  font-size: 14px;
  background-color: #ffffff;
  margin: 0;
  position: relative;
  color: #222222;
  padding: 0 15px;
  padding-bottom: 0;
}
body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

ul {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

/*=====================
  Typography CSS 
==========================*/
body {
  font-family: "Mulish", sans-serif;
}

ul {
  list-style: none;
}

li {
  font-size: 14px;
  color: #222222;
}

p {
  font-size: 14px;
  line-height: 1.5;
  color: #222222;
}

a {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  text-decoration: none;
  color: #222222;
}
a:hover {
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  color: currentColor;
}
a:focus {
  outline: none;
}

:focus {
  outline: none;
}

.form-control {
  font-size: 14px;
  color: #222222;
}
[dir=rtl] .form-control {
  text-align: right;
}
.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 33px;
  text-transform: capitalize;
  margin: 0;
  color: #222222;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
  color: #222222;
}

h3 {
  font-size: 20px;
  line-height: 16px;
  margin: 0;
  color: #222222;
}

h4 {
  font-size: 18px;
  line-height: 25px;
  margin: 0;
  color: #222222;
}

h5 {
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  font-weight: normal;
  color: #222222;
}

h6 {
  font-size: 14px;
  line-height: 19px;
  font-weight: normal;
  margin: 0;
  color: #222222;
}

.title-color {
  color: #222222;
}

.theme-color {
  color: #0baf9a;
}

.content-color {
  color: #777777;
}

.font-danger {
  color: #e93939 !important;
}

.section-p-t {
  padding-top: calc(35px + 37 * (100vw - 320px) / 1600);
}

.btn-solid {
  padding: calc(10px + 4 * (100vw - 320px) / 1600) calc(28px + 6 * (100vw - 320px) / 1600);
  background-color: #0baf9a;
  color: #ffffff;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  border-radius: 5px;
  font-weight: 600;
  border: 1px solid #ceefeb;
  line-height: 21px;
  display: inline-block;
}
.btn-solid:hover {
  color: #ffffff;
}

.btn-outline {
  padding: calc(10px + 4 * (100vw - 320px) / 1600) calc(28px + 6 * (100vw - 320px) / 1600);
  background-color: #ffffff;
  color: #0baf9a;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  border-radius: 5px;
  font-weight: 600;
  border: 1px solid #0baf9a;
  display: inline-block;
  line-height: 21px;
}
.btn-outline:hover {
  color: #0baf9a;
}

.btn-outline-grey {
  padding: 12px calc(28px + 6 * (100vw - 320px) / 1600);
  background-color: #ffffff;
  color: #777777;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  border-radius: 5px;
  line-height: 21px;
  font-weight: 700;
  border: 1px solid #cacaca;
  width: 100%;
  display: inline-block;
}
.btn-outline-grey:hover {
  color: #777777;
}

.wrap {
  z-index: 2;
  position: relative;
}
@media only screen and (min-width: 1440px) {
  .wrap {
    max-width: 1440px;
    margin: 0 auto;
  }
}

/*=====================
  Page Css 
==========================*/
.top-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: calc(25px + 25 * (100vw - 320px) / 1600);
}
.top-content h2 {
  font-size: calc(18px + 12 * (100vw - 320px) / 1600);
  font-weight: 600;
  color: #222222;
  line-height: calc(22px + 16 * (100vw - 320px) / 1600);
  margin-top: calc(-4px + -2 * (100vw - 320px) / 1600);
  margin-bottom: calc(6px + 5 * (100vw - 320px) / 1600);
}
.top-content p {
  margin-bottom: 0;
  font-size: calc(14px + 6 * (100vw - 320px) / 1600);
  color: #777777;
  line-height: calc(19px + 9 * (100vw - 320px) / 1600);
}

.bg-box {
  background-color: #edf8f8;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: -70px;
  padding-top: 60px;
  padding-bottom: 20%;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .bg-box {
    padding-bottom: 0;
    padding-top: 71px;
  }
}

.pettertn {
  width: 160px;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .pettertn {
    display: none;
  }
}
.pettertn.left {
  left: 0px;
}
.pettertn.top {
  top: -100px;
}
.pettertn.right {
  right: 0px;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.pettertn.bottom {
  bottom: -100px;
}

header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #ffffff;
  width: 100vw;
  max-width: 100vw;
}
header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .header .nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: calc(4px + 46 * (100vw - 320px) / 1600);
}
@media only screen and (max-width: 767px) {
  header .header .nav-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .header .nav-wrap .menu {
  stroke: #222222;
  cursor: pointer;
  display: none;
}
@media only screen and (max-width: 767px) {
  header .header .nav-wrap .menu {
    display: block;
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }
}
header .header .nav-wrap a {
  display: block;
}
@media only screen and (max-width: 767px) {
  header .header .nav-wrap a {
    margin-top: -4px;
  }
}
header .header .nav-wrap a img {
  width: calc(100px + 30 * (100vw - 320px) / 1600);
  height: auto;
}
@media only screen and (max-width: 767px) {
  header .header .nav-wrap .navigation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #edf8f8;
    padding: 20px 20px 20px 20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 50;
  }
}
header .header .nav-wrap .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(4px + 31 * (100vw - 320px) / 1600);
}
@media only screen and (max-width: 767px) {
  header .header .nav-wrap .navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}
header .header .nav-wrap .navigation ul li a {
  font-size: 18px;
  font-weight: 500;
  color: #222222;
}
header .header .btn-solid {
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  padding: calc(5px + 3 * (100vw - 320px) / 1600) calc(10px + 10 * (100vw - 320px) / 1600);
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  header .header.show .navigation {
    top: calc(50px + 8 * (100vw - 320px) / 1600);
    opacity: 1;
    visibility: visible;
  }
  header .header.show .navigation ul {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.landing-page .top-secion {
  margin-bottom: 50px;
  padding-top: calc(20px + 30 * (100vw - 320px) / 1600);
}
@media only screen and (max-width: 992px) {
  .landing-page .top-secion {
    margin-bottom: calc(20px + 30 * (100vw - 320px) / 1600);
  }
}
.landing-page .top-secion .content-box {
  text-align: center;
}
.landing-page .top-secion .content-box h1 {
  font-size: calc(18px + 17 * (100vw - 320px) / 1600);
  font-weight: bold;
  color: #222222;
  margin: 0 auto;
  line-height: calc(25px + 23 * (100vw - 320px) / 1600);
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .landing-page .top-secion .content-box h1 {
    margin: -7px auto 5px;
  }
}
.landing-page .top-secion .content-box p {
  margin: 0 auto;
  line-height: calc(19px + 9 * (100vw - 320px) / 1600);
  max-width: 60%;
  font-size: calc(14px + 6 * (100vw - 320px) / 1600);
  font-weight: normal;
  color: #777777;
}
@media (max-width: 991px) {
  .landing-page .top-secion .content-box p {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .landing-page .top-secion .content-box p {
    max-width: 100%;
  }
}
.landing-page .top-secion .btn-box {
  text-align: center;
  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);
}
@media only screen and (max-width: 350px) {
  .landing-page .top-secion .btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.landing-page .top-secion .btn-box .btn-solid {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: calc(14px + 2 * (100vw - 320px) / 1600);
  padding: calc(8px + 6 * (100vw - 320px) / 1600) calc(8px + 26 * (100vw - 320px) / 1600);
}
.landing-page .top-secion .btn-box .btn-solid svg,
.landing-page .top-secion .btn-box .btn-solid img {
  width: calc(19px + 5 * (100vw - 320px) / 1600);
  height: calc(19px + 5 * (100vw - 320px) / 1600);
}
.landing-page .top-secion .btn-box .btn-solid.dark {
  background-color: #222222;
  border-color: #222222;
}
.landing-page .iframe-section {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  margin-top: calc(-51px + -327 * (100vw - 320px) / 1600);
  margin-bottom: -6px;
}
@media only screen and (max-width: 992px) {
  .landing-page .iframe-section {
    display: none;
  }
}
.landing-page .iframe-section .right-mobile {
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}
.landing-page .iframe-section .right-mobile .iframe-img {
  width: 376px;
  height: 751px;
  border: 3px solid #222222;
  border-radius: 20px;
}
.landing-page .iframe-section .img-1 {
  width: calc(121px + 100 * (100vw - 320px) / 1600);
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 28px;
  left: calc(-530px + 468 * (100vw - 320px) / 1600);
}
.landing-page .iframe-section .img-1.right-1 {
  right: calc(-530px + 468 * (100vw - 320px) / 1600);
  left: unset;
}
.landing-page .iframe-section .img-2 {
  width: calc(121px + 100 * (100vw - 320px) / 1600);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 28px;
  left: calc(-365px + 550 * (100vw - 320px) / 1600);
}
.landing-page .iframe-section .img-2.right-2 {
  right: calc(-365px + 550 * (100vw - 320px) / 1600);
  left: unset;
}
.landing-page .iframe-section .img-3 {
  width: calc(177px + 100 * (100vw - 320px) / 1600);
  top: 40%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  border-radius: 28px;
  left: calc(-228px + 673 * (100vw - 320px) / 1600);
}
.landing-page .iframe-section .img-3.right-3 {
  right: calc(-228px + 673 * (100vw - 320px) / 1600);
  left: unset;
}
.landing-page .feature-section {
  text-align: center;
  height: 100%;
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}
.landing-page .feature-section .row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 360px) {
  .landing-page .feature-section .row > div {
    width: 100%;
  }
}
.landing-page .feature-section .fetuses-box {
  text-align: center;
  background-color: #fafafa;
  padding: 0;
  border-radius: 15px;
}
.landing-page .feature-section .fetuses-box img {
  width: 80%;
}
@media only screen and (max-width: 360px) {
  .landing-page .feature-section .fetuses-box img {
    width: 50%;
  }
}
.landing-page .feature-section span {
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  color: #777777;
  font-weight: 600;
  display: block;
  line-height: 22px;
  margin-top: calc(10px + 5 * (100vw - 320px) / 1600);
}
.landing-page .feature-section .fetuses-box:hover {
  -webkit-box-shadow: 0px 0px 26px 3px #e2e2e2;
          box-shadow: 0px 0px 26px 3px #e2e2e2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.landing-page .feature-section .fetuses-box:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.landing-page .feature-section .fetuses-box:hover ~ span {
  color: #222222;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.landing-page .qr-section {
  margin-top: calc(25px + 47 * (100vw - 320px) / 1600);
  background-color: #edf8f8;
  margin-left: -15px;
  margin-right: -15px;
  padding: 10px 0;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 992px) {
  .landing-page .qr-section {
    text-align: center;
    padding: calc(35px + 37 * (100vw - 320px) / 1600) 15px;
  }
}
.landing-page .qr-section .content-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.landing-page .qr-section .content-box .content span {
  font-weight: 500;
  font-size: calc(20px + 8 * (100vw - 320px) / 1600);
  line-height: calc(25px + 13 * (100vw - 320px) / 1600);
  color: #0baf9a;
}
@media only screen and (max-width: 992px) {
  .landing-page .qr-section .content-box .content span {
    margin-top: -5px;
    display: block;
    font-size: calc(16px + 12 * (100vw - 320px) / 1600);
  }
}
.landing-page .qr-section .content-box .content h3 {
  font-size: calc(18px + 6 * (100vw - 320px) / 1600);
  font-weight: 600;
  color: #222222;
  line-height: calc(20px + 12 * (100vw - 320px) / 1600);
  margin-top: 8px;
}
.landing-page .qr-section .content-box .arrow {
  text-align: center;
}
.landing-page .qr-section .content-box .arrow img {
  width: 100%;
}
.landing-page .qr-section .content-box .qr-code img {
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .landing-page .qr-section .content-box .qr-code img {
    width: 50%;
  }
}
.landing-page .screenshots-section {
  position: relative;
  margin-left: -15px;
  margin-right: -15px;
}
.landing-page .screenshots-section .top-content {
  margin-bottom: calc(40px + 20 * (100vw - 320px) / 1600);
}
.landing-page .screenshots-section .center-slider {
  margin-top: calc(-17px + -12 * (100vw - 320px) / 1600);
  margin-bottom: calc(-17px + -12 * (100vw - 320px) / 1600);
  /* Active center slide (You can change anything here for cenetr slide)*/
}
.landing-page .screenshots-section .center-slider .slick-slide {
  margin: 0 5px;
  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;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.landing-page .screenshots-section .center-slider .slick-slide,
.landing-page .screenshots-section .center-slider .slick-slide[aria-hidden=true]:not(.slick-cloned) ~ .slick-cloned[aria-hidden=true] {
  -webkit-transform: scale(0.9, 0.9);
          transform: scale(0.9, 0.9);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.landing-page .screenshots-section .center-slider .slick-center,
.landing-page .screenshots-section .center-slider .slick-slide[aria-hidden=true]:not([tabindex="-1"]) + .slick-cloned[aria-hidden=true] {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.landing-page .screenshots-section .center-slider .slick-current.slick-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.landing-page .screenshots-section .center-slider .slick-next,
.landing-page .screenshots-section .center-slider .slick-prev {
  z-index: 5;
}
.landing-page .screenshots-section .center-slider .slick-next {
  right: 15px;
}
.landing-page .screenshots-section .center-slider .slick-prev {
  left: 15px;
}
.landing-page .screenshots-section .center-slider .slick-next:before,
.landing-page .screenshots-section .center-slider .slick-prev:before {
  display: none;
}
.landing-page .screenshots-section .center-slider .img-box {
  text-align: center;
}
.landing-page .screenshots-section .center-slider .img-box img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 17px;
  border: 3px solid #c4c4c4;
}
.landing-page .screenshots-section .center-slider .slick-current.slick-active img {
  border: 3px solid #222222;
}
.landing-page .core-feature-section {
  margin-top: calc(53px + 53 * (100vw - 320px) / 1600);
  margin-left: -15px;
  margin-right: -15px;
  background-color: #edf8f8;
  padding: calc(39px + 33 * (100vw - 320px) / 1600) 15px;
}
@media only screen and (max-width: 375px) {
  .landing-page .core-feature-section .key-feature > div {
    width: 100%;
  }
}
.landing-page .core-feature-section .key-feature .theme-collection .image-contain {
  background-color: #ffffff;
  padding: 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 15px;
}
.landing-page .core-feature-section .key-feature .theme-collection .image-contain img {
  width: auto;
  max-height: calc(48px + 27 * (100vw - 320px) / 1600);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: calc(48px + 26 * (100vw - 320px) / 1600);
}
.landing-page .core-feature-section .key-feature .theme-collection .image-contain .set-image {
  text-align: center;
}
.landing-page .core-feature-section .key-feature .theme-collection h5 {
  margin-top: calc(12px + 8 * (100vw - 320px) / 1600);
  text-align: center;
  color: #555;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 1;
  font-size: calc(14px + 4 * (100vw - 320px) / 1600);
  font-weight: 700;
}
.landing-page .core-feature-section .key-feature .theme-collection:hover .image-contain {
  -webkit-box-shadow: 0px 0px 26px 3px #e2e2e2;
          box-shadow: 0px 0px 26px 3px #e2e2e2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.landing-page .core-feature-section .key-feature .theme-collection:hover h5 {
  color: #222222;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.landing-page .core-feature-section .key-feature .theme-collection:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.footer-wrap .footer {
  padding: calc(20px + 20 * (100vw - 320px) / 1600) 0;
  text-align: center;
  background: #222222;
  margin-left: -15px;
  margin-right: -15px;
}
.footer-wrap .footer img {
  width: calc(70px + 50 * (100vw - 320px) / 1600);
  height: auto;
  margin-bottom: calc(7px + 8 * (100vw - 320px) / 1600);
}
.footer-wrap .footer h6 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0px;
  font-weight: 600;
  font-size: calc(13px + 5 * (100vw - 320px) / 1600);
}

.tap-top {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  color: #0baf9a;
  text-align: center;
  background: #0baf9a;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  padding: 7px;
  cursor: pointer;
}
.tap-top svg {
  width: 30px;
  height: 30px;
  stroke: #ffffff;
}
/*# sourceMappingURL=style.css.map */