@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@keyframes slide-from-right {
  from {
    margin-left: 100%;
  }
  50% {
    margin-left: 25%;
  }
  to {
    margin-left: 0%;
  }
}
@keyframes grow-from-bottom {
  from {
    opacity: 0;
    top: 300px;
  }
  50% {
    opacity: 0;
  }
  to {
    opacity: 1;
    top: 160px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif !important;
  scroll-behavior: smooth;
}
body .btn-text {
  font-size: 20px;
  font-weight: 500;
}
body .filled-btn {
  background: #f55253;
  padding: 16px 50px;
  border-radius: 12px;
}
body .sub-heading p {
  font-size: 18px;
  font-weight: 400;
  color: #676767;
}

.vert-seperator {
  display: inline-block;
  margin: auto 10px;
  padding: 7px 1px;
  background-color: rgba(0, 0, 0, 0.261);
}

.header {
  top: 0;
  left: 0;
  right: 0;
  margin: 25px 0;
  z-index: 999999;
  transition: all 200ms ease-in-out;
  opacity: 1;
}
.header.hide {
  transform: translateY(-100%);
}
.header .navbar .navbar-brand {
  width: 300px;
  color: #f55253;
  margin: 0;
}
.header .navbar .navbar-nav .nav-link.active,
.header .navbar .navbar-nav .show > .nav-link {
  color: #f55253;
}
.header .navbar .navbar-nav:hover .nav-link {
  color: #2e2e2e;
}
.header .navbar .navbar-nav .nav-link:hover {
  color: #f55253;
}
.header .navbar .navbar-nav .nav-link {
  font-weight: 500;
}
.header .navbar .search-n-cart {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 20px;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.06);
  border-radius: 25px;
}
.header .navbar .search-n-cart .carticon {
  position: relative;
}
.header .navbar .search-n-cart .carticon .itemcount {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #f55253;
  text-align: center;
}
.header .navbar .search-n-cart .carticon .itemcount p {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  font-size: 12px;
}
.header .navbar .search-n-cart input {
  width: 200px;
  outline: none;
  border: none;
  background: transparent;
}
.header .navbar .search-n-cart input::-moz-placeholder {
  font-size: 14px;
}
.header .navbar .search-n-cart input::placeholder {
  font-size: 14px;
}
.header .navbar .search-n-cart a {
  color: #232323;
}

.hero-banner {
  margin: 100px auto;
}
.hero-banner .banner-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.hero-banner .banner-text .tag {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: rgba(245, 82, 82, 0.2156862745);
}
.hero-banner .banner-text .tag h6 {
  color: #f55253;
  margin: 0;
}
.hero-banner .banner-text .tag .tag-img {
  width: 30px;
  height: 30px;
}
.hero-banner .banner-text .tag .tag-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: -20px -8px;
     object-position: -20px -8px;
}
.hero-banner .banner-text .heading {
  display: block;
}
.hero-banner .banner-text .heading h1 {
  color: #2e2e2e;
  font-size: 74px;
  letter-spacing: -0.74px;
  font-weight: 700;
}
.hero-banner .banner-text .heading h1 span {
  font-weight: 500;
  color: #f55253;
  letter-spacing: -3.7px;
}
.hero-banner .banner-text .play-icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
}
.hero-banner .banner-text .trans-btn {
  text-decoration: none;
  background: transparent;
  border: none;
}
.hero-banner .banner-text .trans-btn i {
  color: #fdc55e;
  font-size: 18px;
}
.hero-banner .banner-image {
  animation: slide-from-right 2500ms linear;
  position: relative;
}
.hero-banner .banner-image .main-image {
  width: -moz-fit-content;
  width: fit-content;
  height: 550px;
  margin: 0 auto;
  margin-right: 10px;
}
.hero-banner .banner-image .main-image img {
  width: auto;
  margin: 0 auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-banner .banner-image .bnr-card01 {
  position: absolute;
  left: -60px;
  top: 30px;
}
.hero-banner .banner-image .bnr-card02 {
  position: absolute;
  right: -100px;
  top: 50px;
}
.hero-banner .banner-image .bnr-abstr {
  animation: grow-from-bottom 2000ms linear;
  width: 100px;
  position: absolute;
  left: auto;
  top: 180px;
  right: -40px;
}

.service {
  padding: 100px 0;
  background: #fef5f5;
}
.service .head-tag {
  text-align: center;
}
.service .head-tag h6 {
  text-transform: uppercase;
  color: #f55253;
}
.service .heading {
  color: #2e2e2e;
}
.service .heading h2 {
  width: 55%;
  margin: 0 auto;
  font-size: 40px;
  line-height: 54px;
  font-weight: 700;
}
.service .servicebox {
  position: relative;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  z-index: 999;
}
.service .servicebox:hover .bg-box {
  transition: all 250ms ease-in-out;
  height: 110%;
  opacity: 1;
  top: -5px;
  left: 4%;
  border-radius: 17px;
  transform: rotate(-3deg);
}
.service .servicebox .bg-box {
  width: 100%;
  height: 100%;
  background: #f55253;
  position: absolute;
  margin: 0 auto;
  transition: all 250ms ease-in-out;
  top: 0;
  left: 0;
  border-radius: 15px;
  z-index: 100;
  opacity: 0.4;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
}
.service .servicebox .box-content {
  margin: 0 auto;
  width: 100%;
  padding: 40px 25px;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: inherit;
  background-color: white;
  z-index: 999;
}
.service .servicebox .box-content .iconimag {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.service .servicebox .box-content .serbox-text {
  display: block;
}
.service .servicebox .box-content .serbox-text h4 {
  color: #2e2e2e;
}
.service .servicebox .box-content .serbox-text p {
  font-size: 16px;
  color: #676767;
  margin: 0;
  line-height: 24px;
}

.featureblog1 {
  margin: 100px auto;
}
.featureblog1 .imagebox .image-wrapper {
  width: 100%;
  height: 100%;
}
.featureblog1 .head-tag {
  margin-top: 70px;
}
.featureblog1 .head-tag h6 {
  text-transform: uppercase;
  color: #03a66b;
}
.featureblog1 .heading {
  color: #2e2e2e;
}
.featureblog1 .heading h2 {
  line-height: 54px;
  font-size: 40px;
  font-weight: 700;
}

.featureblog2 {
  margin: 100px auto;
}
.featureblog2 .imagebox .image-wrapper {
  width: 100%;
  height: 100%;
}
.featureblog2 .head-tag {
  margin-top: 100px;
}
.featureblog2 .head-tag h6 {
  text-transform: uppercase;
  color: #fdc55e;
}
.featureblog2 .heading {
  color: #2e2e2e;
}
.featureblog2 .heading h2 {
  line-height: 54px;
  font-size: 40px;
  font-weight: 700;
}
.featureblog2 .filled-btn {
  color: #f55253;
  background: transparent;
  border: 1.5px solid #f55253;
}

.featureblog3 {
  background: #fef5f5;
  padding: 100px 0;
}
.featureblog3 .imagebox .image-wrapper {
  width: 100%;
  height: 550px;
}
.featureblog3 .imagebox .image-wrapper img {
  -o-object-fit: contain;
     object-fit: contain;
}
.featureblog3 .head-tag h6 {
  text-transform: uppercase;
  color: #f55253;
}
.featureblog3 .heading {
  color: #2e2e2e;
}
.featureblog3 .heading h2 {
  line-height: 54px;
  font-size: 40px;
  font-weight: 700;
}
.featureblog3 .btn-text {
  background: transparent;
  color: #2e2e2e;
  font-size: 16px;
}
.featureblog3 .trans-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  padding: 10px 15px;
  background: transparent;
  border-radius: 12px;
  border: 1.5px solid #eedcdc;
}
.featureblog3 .trans-btn .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.featureblog3 .trans-btn .appstore {
  background: #2e2e2e;
}
.featureblog3 .trans-btn .appstore i {
  color: #fff;
  font-size: 24px;
}
.featureblog3 .trans-btn .playstore i {
  font-size: 24px;
  color: #2e2e2e;
}

.footer {
  padding-top: 50px;
}
.footer h6.list-heading {
  font-size: 18px;
  font-weight: 600;
}
.footer p {
  color: #676767;
}
.footer .title-tag {
  color: #676767;
}
.footer .list-heading {
  text-transform: capitalize;
  margin: 25px 0 15px 0;
  color: #2e2e2e;
}
.footer .list-heading a {
  text-decoration: none;
  color: #2e2e2e;
  letter-spacing: 1.5px;
}
.footer .list-group {
  gap: 12px;
}
.footer .list-group .list-item a {
  font-size: 16px;
  color: #676767;
}
.footer .divider-line {
  display: flex;
  flex-grow: 1;
  height: 1px;
  background: #676767;
  opacity: 0.2;
  box-shadow: 0 0 10px 20px rgba(0, 0, 0, 0.1);
}
.footer .terms-policy,
.footer .rights {
  font-weight: 400;
  font-size: 14px;
}
.footer .terms-policy a,
.footer .rights a {
  text-decoration: none;
}
.footer .terms-policy p,
.footer .rights p {
  color: #676767;
  font-size: 14px;
}
.footer .terms-policy {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .header .navbar .search-n-cart {
    width: 100%;
  }
  .header .navbar .search-n-cart input {
    width: 100%;
  }
  .hero-banner .banner-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .hero-banner .banner-text .heading h1 {
    font-size: 42px;
  }
  .hero-banner .banner-text .play-icon {
    width: 50px;
    height: 50px;
  }
  .hero-banner .banner-text .trans-btn i {
    font-size: 16px;
  }
  .hero-banner .banner-image .main-image {
    height: 400px;
    margin-right: auto;
    position: inherit;
    z-index: 500;
  }
  .hero-banner .banner-image .bnr-card01 {
    z-index: 400;
    left: -80px;
    top: -100px;
  }
  .hero-banner .banner-image .bnr-card02 {
    top: -50px;
    right: -50px;
    z-index: 400;
  }
  .hero-banner .banner-image .bnr-abstr {
    top: 160px;
    right: 0px;
    z-index: 400;
  }
  .service {
    padding: 60px 0;
  }
  .service .heading h2 {
    width: 100%;
    font-size: 28px;
    line-height: 30px;
    font-weight: 600;
  }
  .service .servicebox {
    transform: scale(0.9);
  }
  .featureblog1,
  .featureblog2 {
    margin: 60px auto;
  }
  .featureblog1 .head-tag,
  .featureblog2 .head-tag {
    margin-top: 50px;
  }
  .featureblog1 .heading h2,
  .featureblog2 .heading h2 {
    line-height: 30px;
    font-size: 28px;
    font-weight: 600;
  }
  .featureblog3 {
    padding: 60px 0;
  }
  .featureblog3 .imagebox .image-wrapper {
    height: 450px;
  }
  .featureblog3 .head-tag {
    margin-top: 50px;
  }
  .featureblog3 .heading h2 {
    line-height: 30px;
    font-size: 28px;
    font-weight: 600;
  }
  .footer {
    padding-top: 0px;
  }
  .footer h6.list-heading {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */