@import url(https://db.onlinewebfonts.com/c/33ca94f43a53fc634323a6fe191ffd64?family=Trend+Sans+W00+Four);
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Sacramento&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Questrial&family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 60px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}

.logo img {
  width: 38px;
  height: 36px;
  object-fit: cover;
  margin: 2px;
}
.nav {
  height: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-header > .nav-title {
  display: inline-block;
  font-size: 22px;
  color: #000;
  padding: 10px 10px 10px 10px;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;

  font-family: "Caveat", cursive;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 4px 10px 13px 70px;
  text-decoration: none;
  color: #000;
  height: 39px;
  font-family: "Caveat", cursive;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
}
.nav > a {
  display: inline-block;
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #000;
  height: 39px;
  font-family: "Caveat", cursive;
  font-size: 21px;
  font-weight: 400;
  font-style: normal;
}
.nav a:last-child {
  border-right: none;
}

.nav > .nav-links > a:hover {
  /* background-color: rgba(0, 0, 0, 0.3); */
  color: #bebcbc;
}

.nav > #nav-check {
  display: none;
}

@media (max-width: 810px) {
  header {
    justify-content: flex-start;
  }
  .nav > .nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .nav > .nav-btn > label {
    display: inline-block;
    width: 50px;
    height: 50px;
    padding: 15px 10px;
  }
  .nav > .nav-btn > label:hover,
  .nav #nav-check:checked ~ .nav-btn > label {
    background-color: rgba(0, 0, 0, 0.3);
  }
  .nav > .nav-btn > label > span {
    display: block;
    width: 25px;
    height: 7px;
    border-top: 3.4px solid #000;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #c6e9b1;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 50px;
    left: 0px;
    z-index: 1000;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(95vh - 50px);
    /* position: absolute;logo */
    overflow-y: auto;
  }
}

.home {
  background-color: #c6e9b1;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: rgb(47, 67, 44);
}
@media (max-width: 600px) {
  .home {
    height: auto;
    padding: 50px;
  }
}
.home span {
  font-size: 70px;
  line-height: 1.6em;
  text-align: center;
  font-family: "Wix Madefor Text";
  font-weight: 700;
}
.home i {
  font-family: "Trend Sans W00 Four";
  font-weight: 400;
}

.mobile {
  background-color: #f4f4f4;
  height: 575px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: "Questrial", sans-serif;
  /* font-weight: 400; */
  position: relative;
  font-style: normal;
}

@media (max-width: 810px) {
  .top {
    position: absolute;
    top: 0px;
  }
}

.images {
  width: 300px;
  height: 645px;
  position: relative;
}

.images img {
  transform: rotate(-8deg) !important;
  width: 300px;
  height: 645px;
  object-fit: cover;
}

@media (max-width: 800px) {
  .mobile {
    height: auto;
  }
  .images img {
    margin-top: 140px;
  }
}

@media (max-width: 600px) {
  .images img {
    width: 260px;
  }
}
.text {
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.text svg {
  width: 277px;
  height: 76px;
}

.text h4 {
  font-size: 44px;
  text-align: center;
  font-family: "Sacramento", cursive;
  font-style: italic;
  color: rgb(0 0 0);
  margin: 0px;
  font-weight: 400;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.home span {
  animation: fadeIn 2s ease-in;
}

.images img {
  opacity: 0;
  transition: opacity 2s ease-in;
}

.images img.fade-in {
  opacity: 1;
}
.smart {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: "questrial", sans-serif;
  font-size: 17px;
  line-height: 1.3em;
  text-align: center;
  margin: 30px 0px;
}

@media (max-width: 800px) {
  .smart {
    margin-top: 120px;
  }
}

.box {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.box h2 {
  width: 209px;
  height: auto;
  margin-bottom: 8px;
  font-size: 24px;
  text-align: center;
  color: rgb(0 0 0 1);
}
.box p {
  width: 199px;
  height: auto;
  color: rgb(89, 89, 89);
}

footer {
  background-color: #000;
  color: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 30px;
  text-align: center;
  font-family: "Questrial", sans-serif;
  height: auto;
}
.download {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: auto;
}
.app {
  margin: 20px;
}

footer li {
  list-style: none;
  margin: 25px;
  font-size: 14px;
}
footer a {
  text-decoration: none;
  color: #f4f4f4;
}

.soical {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: auto;
}

.fb {
  margin: 20px;
  margin-right: 0px;
}
span {
  margin: 2px;
  font-size: 10px;
}

/* styling of blog page */

.blog {
  width: 100%;
  height: auto;
  margin-top: 100px;
  padding: 20px;
  font-family: "Questrial", sans-serif;
}

.blog-box {
  margin: 0;
  margin-top: 20px;
  height: auto;
  width: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: "Questrial", sans-serif;
  flex-wrap: wrap;
}

.blog-img {
  height: 340.5px;
  width: 454px;
  margin: -1px;
}

.logo {
  display: flex;
  align-items: center;
}

.blog-content {
  overflow: hidden;
  box-sizing: border-box;
  height: 340.5px;
  width: 486px;
  padding-left: 36px;
  padding-right: 36px;
  border-width: 1px;
  border-color: rgba(232, 230, 230, 0.75);
  border-style: solid;
  border-left: none;
  font-family: "Questrial", sans-serif;
}
.blog-content p {
  flex-grow: 1;
  height: 100%;
  line-height: 1.5;
  overflow: hidden;
  word-break: break-word;
  font-family: "Questrial", sans-serif;
  font-size: 16px;
  padding: 10px;
  word-spacing: 2px;
}
.blog-content h1 {
  font-size: 28px;
  margin: 10px;
  /* -webkit-line-clamp: 3; */
  word-spacing: 5px;
  font-family: "Questrial", sans-serif;
}
.blog-content p:hover {
  color: blue;
}
.blog-content h1:hover {
  color: blue;
}
video {
  width: 454px;
  height: 340.5px;
}

.TmqMif {
  flex-shrink: 0;
  height: 0.9em;
  max-height: 50px;
  max-width: 50px;
  min-height: 14px;
  min-width: 14px;
  width: 0.9em;
  color: rgba(86, 111, 184);
  font-family: "Questrial", sans-serif;
}
.search-box {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  align-items: center;
  font-family: "Questrial", sans-serif;
  height: auto;
  width: 305px;
  margin: 30px;
  padding: 2px 10px;
  border: 1px solid rgba(86, 111, 184);
}
input {
  border: none;
  outline: none;
  margin: 10px;
  object-fit: cover;
}

@media (max-width: 480px) {
  .images img {
    margin-top: 180px;
    transform: rotate(0) !important;
    width: 100%;
  }
  .app {
    margin: 15px;
    margin-left: 0;
  }
  .app a img,
  .play a img {
    width: 160px;
  }
  footer li {
    margin: 20px 25px;
  }
  .home {
    padding: 160px 15px;
  }
  /* .home span {
    font-size: 51px;
    line-height: 77px;
  }
  .home span i {
    font-size: 40px;
  } */
  .home span {
    font-size: 31px;
    line-height: normal;
  }
  .home span br {
    display: none;
  }
  .home span i {
    font-size: 36px;
    display: block;
}
footer {
  padding: 30px 15px;
}
.download {
  flex-wrap: nowrap;
}
.app {
  margin: 15px 5px;
}
footer h1 {
  font-size: 32px;
}
.text svg {
  width: 221px;
  margin-bottom: 35px;
  margin-top: -20px;
}
.nav > .nav-links > a {
  padding-left: 46px;
  border-bottom: 1px solid #000;
}
}

@media (max-width: 400px) {
  /* .home span br:first-child {
    display: block !important;
  } */
  .home span {
    font-size: 42px;
    line-height: 1.4em;
  }
  .home span i {
    font-size: 40px;
    display: block;
  }
  .top {
    top: 10px;
    margin-top: 35px;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}