@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
  transition: 0.3s all ease-in-out;
}

img {
  transition: 0.3s all ease-in-out;
}

* {
  margin: 0;
  padding: 0;
}

:focus {
  outline: none !important;
}

p {
  line-height: 28px;
  font-size: 16px;
}

/* styling scroll bar*/
::-webkit-scrollbar {
  width: 5px;
  height: 6px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
}

::-webkit-scrollbar-thumb {
  background: #2e864c;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2e864c;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  background-color: #F3F4F8;
}

.p60 {
  padding: 60px 0px;
}

header {
  width: 100%;
  padding: 20px 0px;
  position: absolute;
  top: 0;
  z-index: 999;
}
header .navbar {
  width: 100%;
  background-color: #FFF;
  padding: 15px 18px;
  border-radius: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .navbar .nav {
  display: flex;
}
header .navbar .nav li a {
  padding: 0px 20px;
  color: #000;
}
header .navbar .nav li a.active {
  font-weight: 500;
  color: #2e864c;
}
header .navbar .nav li a:hover {
  color: #2e864c;
}
header .navbar .header-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .navbar .demo a {
  background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
  background-size: 300% 100%;
  padding: 12px 20px;
  border-radius: 50px;
  color: #FFF;
  overflow: hidden;
  position: relative;
}
header .navbar .demo a:hover {
  background-position: 100% 0;
  transition: all 0.4s ease-in-out;
}
header .navbar .mb-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(11, 163, 96) 0%, rgb(48, 221, 138) 100%);
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
  position: relative;
}
header .navbar .mb-nav span {
  background-color: #fff;
  border-radius: 1px;
  height: 2px;
  width: 42%;
  position: absolute;
  left: 72%;
  top: 50%;
  margin: -1px 0 0 -15px;
  transition: height 100ms;
}
header .navbar .mb-nav span::before, header .navbar .mb-nav span::after {
  content: "";
  background-color: #fff;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  transition: all 200ms;
  z-index: 9999;
}
header .navbar .mb-nav span::after {
  top: -7px;
}
header .navbar .mb-nav span::before {
  bottom: -7px;
}
header .navbar .mb-nav.act span {
  height: 0;
}
header .navbar .mb-nav.act span::before, header .navbar .mb-nav.act span::after {
  background-color: #1C1C1C;
  top: 1px;
}
header .navbar .mb-nav.act span::before {
  transform: rotate(-45deg);
}
header .navbar .mb-nav.act span::after {
  transform: rotate(45deg);
}

.mainMenu {
  background-color: rgba(255, 255, 255, 0.747);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  opacity: 0;
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(0);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.mainMenu .mb-logo {
  width: 100%;
  display: flex;
  justify-content: center;
}
.mainMenu ul {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
.mainMenu.act {
  opacity: 1;
  transform: scale(1);
}
.mainMenu.act ul li {
  opacity: 1;
  transform: translateX(0);
}
.mainMenu.act ul li a {
  color: #1C1C1C;
  font-size: 24px;
  padding: 5px 0px;
  display: inline-block;
  font-weight: 500;
}
.mainMenu.act .mb-demo {
  width: 100%;
  text-align: center;
  padding-bottom: 40px;
}
.mainMenu.act .mb-demo a {
  background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
  box-shadow: 0 4px 15px 0 rgba(23, 168, 108, 0.75);
  background-size: 300% 100%;
  padding: 12px 20px;
  border-radius: 50px;
  color: #FFF;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.banner-sec {
  width: 100%;
  background: linear-gradient(to bottom, rgb(245, 245, 249) 0%, rgb(217, 231, 245) 100%);
  position: relative;
}
.banner-sec::after {
  width: 490px;
  height: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-image: url(../images/banner-bg.svg);
  background-size: cover;
}
.banner-sec .container {
  position: relative;
  z-index: 2;
}
.banner-sec .banner-txt {
  padding: 240px 0px 90px 0px;
}
.banner-sec .banner-txt h4 {
  font-size: 16px;
  margin-bottom: 15px;
}
.banner-sec .banner-txt h4 span {
  background-color: #C4E1FF;
  padding: 8px 19px;
  border-radius: 30px;
  font-weight: 300;
  display: inline-block;
}
.banner-sec .banner-txt h4 span img {
  margin-right: 6px;
  display: inline-block;
  margin-top: -3px;
}
.banner-sec .banner-txt h1 {
  font-size: 44px;
  font-weight: 400;
}
.banner-sec .banner-txt h1 span {
  font-weight: 600;
}
.banner-sec .banner-txt .banner-points {
  width: 100%;
  display: flex;
  gap: 20px;
}
.banner-sec .banner-txt .banner-points span {
  display: flex;
  align-items: center;
}
.banner-sec .banner-txt .banner-points span img {
  margin-right: 6px;
}
.banner-sec .banner-img {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: end;
  height: 100%;
  padding-top: 112px;
}

.verification-code {
  width: 100%;
  position: relative;
  margin-top: -150px;
  z-index: 9;
}
.verification-code .verify-box {
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgb(31, 122, 136) 0%, rgb(31, 122, 136) 30%, rgb(31, 136, 97) 100%);
}
.verification-code .verify-box h5 {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
}
.verification-code .verify-box ul {
  margin-bottom: 15px;
}
.verification-code .verify-box ul li {
  color: #FFF;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}
.verification-code .verify-box ul li span {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid #FFF;
  display: inline-block;
  font-size: 13px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 2px;
}
.verification-code .verify-box .link {
  padding: 12px 20px;
  background-color: #FFF;
  border-radius: 30px;
  display: inline-block;
  color: #2e864c;
  font-weight: 500;
  border: 1px solid white;
}
.verification-code .verify-box .link:hover {
  background-color: transparent;
  color: #FFF;
}
.verification-code .qrcode-sec {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border-radius: 20px;
  padding: 20px;
  display: flex;
}
.verification-code .qrcode-sec .qrcode {
  width: 540px;
}
.verification-code .qrcode-sec .qrcode img {
  width: 100%;
}
.verification-code .qrcode-sec .qrcode-txt {
  width: 100%;
  padding-left: 25px;
}
.verification-code .qrcode-sec .qrcode-txt h4 {
  color: #16CE63;
  font-size: 21px;
  font-weight: 500;
}
.verification-code .qrcode-sec .qrcode-txt h4 span {
  font-size: 16px;
  font-weight: 400;
  color: #959595;
}
.verification-code .qrcode-sec .qrcode-txt ul li {
  margin-bottom: 5px;
  padding-left: 25px;
}
.verification-code .qrcode-sec .qrcode-txt ul li.brand-icon {
  background-image: url(../images/brand-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 4px;
}
.verification-code .qrcode-sec .qrcode-txt ul li.product-icon {
  background-image: url(../images/product-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 4px;
}
.verification-code .qrcode-sec .qrcode-txt ul li.batch {
  background-image: url(../images/manufactured-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 4px;
}
.verification-code .qrcode-sec .qrcode-txt .verify-check {
  background-image: url(../images/check-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 4px;
  padding-left: 26px;
  font-weight: 500;
}

.verify-authenticity .heading-title h3 {
  text-align: center;
  font-size: 34px;
  font-weight: 500;
  color: #000;
}
.verify-authenticity .heading-title h3 span {
  color: #2e864c;
}
.verify-authenticity .heading-title p {
  text-align: center;
}
.verify-authenticity .authenticity-box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #FFF;
  padding: 20px;
  transition: 0.3s all ease-in-out;
}
.verify-authenticity .authenticity-box .icon-sec {
  width: 71px;
  height: 71px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(31, 122, 136) 0%, rgb(31, 136, 62) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto;
  margin-top: -60px;
  margin-bottom: 20px;
  transition: 0.7s all ease-in-out;
  text-align: center;
}
.verify-authenticity .authenticity-box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}
.verify-authenticity .authenticity-box p {
  text-align: center;
}
.verify-authenticity .authenticity-box:hover .icon-sec {
  box-shadow: 0 4px 20px 0 rgba(146, 146, 146, 0.75);
  transform: rotateY(360deg);
}

.m-top-44 {
  margin-top: 44px;
}

.problem-solve {
  width: 100%;
  background-color: #FFF;
}
.problem-solve .content-sec {
  width: 100%;
}
.problem-solve .content-sec h5 {
  font-size: 34px;
  font-weight: 500;
}
.problem-solve .content-sec h5 span {
  color: #2e864c;
}
.problem-solve .cmn-box {
  width: 100%;
  border-radius: 20px;
  padding: 40px;
  background: linear-gradient(135deg, rgb(31, 122, 136) 0%, rgb(31, 122, 136) 30%, rgb(31, 136, 97) 100%);
  text-align: center;
}
.problem-solve .cmn-box .icon {
  width: 100%;
  margin-bottom: 20px;
}
.problem-solve .cmn-box h6 {
  font-size: 32px;
  font-weight: 600;
  color: #FFF;
}
.problem-solve .cmn-box p {
  color: #FFF;
}

.protect-sec {
  width: 100%;
}
.protect-sec .container {
  position: relative;
  z-index: 9;
}
.protect-sec .heading-sec {
  text-align: center;
}
.protect-sec .heading-sec h4 {
  font-size: 34px;
  font-weight: 500;
}
.protect-sec .heading-sec h4 span {
  color: #2e864c;
}
.protect-sec .box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #FFF;
  padding: 20px;
  transition: 0.3s all ease-in-out;
  text-align: center;
}
.protect-sec .box .icon-sec {
  width: 71px;
  height: 71px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(31, 122, 136) 0%, rgb(31, 136, 62) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto;
  margin-top: -60px;
  margin-bottom: 20px;
  transition: 0.7s all ease-in-out;
}
.protect-sec .box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.protect-sec .box:hover .icon-sec {
  box-shadow: 0 4px 20px 0 rgba(146, 146, 146, 0.75);
  transform: rotateY(360deg);
}

.features-included {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, rgb(31, 122, 136) 0%, rgb(31, 122, 136) 30%, rgb(31, 136, 97) 100%);
}
.features-included .heading-sec {
  text-align: center;
}
.features-included .heading-sec h4 {
  font-size: 34px;
  font-weight: 500;
  color: #FFF;
}
.features-included .heading-sec p {
  color: #FFF;
}
.features-included .box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 20px;
  transition: 0.3s all ease-in-out;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.features-included .box .icon {
  width: 100%;
  margin-bottom: 12px;
  transition: 0.7s all ease-in-out;
}
.features-included .box:hover .icon {
  transform: rotateY(360deg);
}
.features-included .box h5 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #FFF;
}
.features-included .box p {
  color: #FFF;
}

.contact-form-sec {
  width: 100%;
  position: relative;
  z-index: 9;
}
.contact-form-sec .heading-title {
  text-align: center;
}
.contact-form-sec .heading-title h4 {
  font-size: 34px;
  font-weight: 500;
}
.contact-form-sec .heading-title h4 span {
  color: #2e864c;
}
.contact-form-sec .form-sec {
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  background-color: #F3F4F8;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 2px 40px #d7d9df;
}
.contact-form-sec .form-sec label {
  font-size: 16px;
  margin-bottom: 6px;
}
.contact-form-sec .form-sec .form-control {
  width: 100%;
  height: 60px;
  background-color: #FFF;
  border-radius: 10px;
  border: none;
}
.contact-form-sec .form-sec .textarea-sec {
  height: 120px;
}
.contact-form-sec .form-sec .btn {
  background-color: #2e864c;
  padding: 15px 22px;
  color: #FFF;
}
.contact-form-sec .form-sec .btn:hover {
  background-color: #1F883E;
}
.contact-form-sec .address-box {
  width: 100%;
  padding-right: 30px;
}
.contact-form-sec .address-box h5 {
  font-size: 34px;
  color: #2e864c;
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-form-sec .address-box ul li {
  display: flex;
  margin-bottom: 15px;
}
.contact-form-sec .address-box ul li .icon {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgb(31, 122, 136) 0%, rgb(31, 136, 62) 100%);
}
.contact-form-sec .address-box ul li .txt {
  width: 87%;
  padding-left: 15px;
}
.contact-form-sec .address-box ul li .txt h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 3px;
  color: #2e864c;
}
.contact-form-sec .address-box ul li .txt p {
  margin: 0;
}
.contact-form-sec .address-box ul li .txt p a {
  color: #000;
}
.contact-form-sec .address-box ul li .address-txt {
  width: 87%;
  padding-left: 15px;
  display: flex;
}
.contact-form-sec .address-box ul li .address-txt .box {
  width: 50%;
  padding-right: 15px;
}
.contact-form-sec .address-box ul li .address-txt h3 {
  font-size: 16px;
  margin-bottom: 3px;
  color: #2e864c;
}

.progress-wrap {
  position: fixed;
  right: 10px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background-color: #2e864c;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: #FFF;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.lightScrollIcon::after {
  color: #ecedf3 !important;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  opacity: 0;
  background-image: linear-gradient(298deg, #2e864c, #C9A887);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg {
  filter: brightness(1);
}

.progress-wrap svg.progress-circle path {
  stroke: #FFF;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

footer {
  width: 100%;
  background-color: #FFF;
  position: relative;
  z-index: 9;
}
footer .f-first {
  padding: 30px 0px;
}
footer .f-first .f-logo-sec {
  padding-right: 50px;
}
footer .f-first .f-logo-sec img {
  margin-bottom: 20px;
}
footer .f-first .f-box {
  width: 100%;
}
footer .f-first .f-box h3 {
  font-size: 20px;
  font-weight: 500;
  color: #2e864c;
  margin-bottom: 13px;
}
footer .f-first .f-box ul li {
  margin-bottom: 6px;
}
footer .f-first .f-box ul li a {
  font-size: 16px;
  color: #000;
  padding: 5px 0px;
}
footer .f-first .f-box ul li a:hover {
  color: #2e864c;
  padding-left: 5px;
}
footer .copyright {
  width: 100%;
  padding: 20px 0px;
  background-color: #2c7f6f;
}
footer .copyright p {
  margin: 0;
  color: #FFF;
  font-weight: 200;
  display: flex;
  align-items: center;
}
footer .copyright p span {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
footer .copyright p span img {
  margin-right: 5px;
}
footer .copyright .right-sec {
  display: flex;
  justify-content: end;
  align-items: center;
}

.pricing-sec {
  width: 100%;
}
.pricing-sec .heading-sec {
  text-align: center;
}
.pricing-sec .heading-sec h4 {
  font-size: 34px;
  font-weight: 500;
}
.pricing-sec .heading-sec h4 span {
  color: #2e864c;
}
.pricing-sec .price-box {
  width: 100%;
  display: flex;
  justify-content: center;
  border: 1px solid #1F883E;
  border-radius: 20px;
  overflow: hidden;
}
.pricing-sec .price-box .plan {
  width: 50%;
  padding: 30px 30px 93px 30px;
  text-align: center;
  position: relative;
}
.pricing-sec .price-box .plan h3 {
  font-size: 16px;
}
.pricing-sec .price-box .plan h5 {
  font-size: 34px;
  font-weight: 600;
}
.pricing-sec .price-box .plan h6 {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 400;
}
.pricing-sec .price-box .plan .contact-btn {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 23px;
}
.pricing-sec .price-box .plan .contact-btn a {
  padding: 12px 20px;
  border-radius: 30px;
  display: inline-block;
  color: #2e864c;
  font-weight: 500;
  border: 1px solid #2e864c;
}
.pricing-sec .price-box .plan .contact-btn a:hover {
  background-color: #2e864c;
  color: #FFF;
}
.pricing-sec .price-box .plan.active {
  background-color: #EEFFF3;
  border-left: 1px solid #1F883E;
  border-right: 1px solid #1F883E;
}
.pricing-sec .price-box .plan.active h3, .pricing-sec .price-box .plan.active h5 {
  color: #1F883E;
}
.pricing-sec .price-box .plan.active .contact-btn a {
  background-color: #2e864c;
  color: #FFF;
}
.pricing-sec .price-box .plan ul li {
  padding-left: 23px;
  text-align: left;
  background-image: url(../images/check-icon3.svg);
  background-repeat: no-repeat;
  background-position: 0px 3px;
  margin-bottom: 10px;
}

.contact-page {
  width: 100%;
  padding-top: 150px !important;
}
.contact-page .ft {
  width: 100%;
}
.contact-page .box-item {
  width: 100%;
  background-color: #FFF;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  justify-content: center;
}

.common-page {
  width: 100%;
  padding-top: 150px !important;
}
.common-page .box {
  width: 100%;
  background-color: #FFF;
  border-radius: 10px;
  padding: 30px;
}
.common-page .box h1 {
  font-size: 34px;
}
.common-page .box h3 {
  font-size: 18px;
  line-height: 28px;
}
.common-page .box ul {
  margin-bottom: 30px;
}
.common-page .box ul li {
  padding-left: 22px;
  margin-bottom: 9px;
  position: relative;
}
.common-page .box ul li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #000;
  left: 8px;
  top: 10px;
  border-radius: 50%;
}

#loader {
  padding: 60px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loader img {
  width: 200px;
}

#content {
  width: 100%;
  height: 100%;
}
#content iframe {
  width: 100%;
  height: 800px;
}

.about-page {
  width: 100%;
  padding-top: 140px !important;
}
.about-page .video-sec {
  width: 100%;
  height: 690px;
}
.about-page .video-sec video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.about-page .mission-sec h4 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}
.about-page .mission-sec p {
  text-align: center;
}
.about-page .box {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  background-color: #FFF;
}
.about-page .box h6 {
  font-size: 28px;
  font-weight: 600;
}
.about-page .box.bg1 {
  background-color: #c4e5cd;
}
.about-page .box.bg2 {
  background-color: #bbf3de;
}

@media (max-width: 991px) {
  header .navbar .logo img {
    width: 137px;
  }
  header .navbar .nav li a {
    padding: 0px 10px;
  }
  .banner-sec .banner-txt {
    padding: 130px 0px 15px 0px;
    text-align: center;
  }
  .banner-sec .banner-img {
    justify-content: center;
    padding-top: 0;
  }
  .banner-sec .banner-img img {
    width: 280px;
  }
  .banner-sec::after {
    display: none;
  }
  .banner-sec .banner-txt .banner-points {
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .f-first .f-logo-sec {
    padding-right: 0px;
    text-align: center;
    padding: 30px;
    border: 1px solid #efefef;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  footer .f-first .f-box {
    padding: 30px;
    border: 1px solid #efefef;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 100%;
  }
  .verification-code .verify-box {
    margin-bottom: 10px;
    padding: 20px;
  }
  .verify-authenticity .authenticity-box {
    text-align: center;
  }
  .verify-authenticity .authenticity-box .icon-sec {
    margin: -50px auto 10px auto;
  }
  .p60 {
    padding: 30px 0px;
  }
  .md-margin {
    margin-bottom: 15px;
  }
  .contact-form-sec .address-box {
    padding-left: 0;
    margin-top: 30px;
  }
  .contact-form-sec .form-sec {
    padding: 30px;
  }
  footer .copyright p {
    justify-content: center;
    text-align: center;
  }
  footer .copyright .right-sec {
    justify-content: center;
  }
  footer .copyright .right-sec p {
    display: block;
  }
  footer .copyright p span {
    margin-left: 0px;
    margin-top: 10px;
  }
  .verification-code {
    margin-top: -90px;
  }
  .about-page {
    padding-top: 110px !important;
  }
  .about-page .video-sec {
    height: 360px;
  }
}
@media (max-width: 768px) {
  header .navbar .nav {
    display: none;
  }
  .banner-sec .banner-txt h1 {
    font-size: 34px;
  }
  header .navbar .mb-nav {
    display: flex;
  }
  footer .f-first .f-box, footer .f-first .f-logo-sec {
    padding: 20px;
    text-align: center;
    height: auto;
  }
  .problem-solve .content-sec h5 {
    font-size: 24px;
  }
  header .demo, .verification-code .verify-box .link, footer .f-first .f-box {
    display: none;
  }
  .banner-sec .banner-txt p, .problem-solve .content-sec p {
    text-align: justify;
  }
  .contact-page {
    padding-top: 117px !important;
  }
  .about-page .box {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .verification-code .qrcode-sec {
    display: block;
  }
  .verification-code .qrcode-sec .qrcode {
    width: 100%;
    margin-bottom: 10px;
  }
  .verification-code .qrcode-sec .qrcode-txt {
    padding-left: 0px;
    padding-top: 10px;
  }
  .verification-code .verify-box h5, .verification-code .qrcode-sec .qrcode-txt h4 {
    font-size: 20px;
  }
  .verify-authenticity .heading-title h3, .protect-sec .heading-sec h4, .features-included .heading-sec h4, .contact-form-sec .heading-title h4, .contact-form-sec .address-box h5 {
    font-size: 24px;
  }
  .features-included::before, .features-included::after {
    display: none;
  }
  .contact-form-sec .form-sec {
    padding: 20px;
  }
  .contact-form-sec .form-sec .btn {
    width: 100%;
  }
  .pricing-sec .price-box {
    display: block;
    border: none;
  }
  .pricing-sec .price-box .plan {
    width: 100%;
    border: 1px solid #2e864c;
    border-radius: 20px;
    margin-top: 10px;
  }
  .contact-form-sec .address-box ul li .address-txt {
    display: block;
  }
  .contact-form-sec .address-box ul li .address-txt .box {
    width: 100%;
    padding-right: 0px;
  }
  .about-page .video-sec {
    height: 210px;
  }
}
@media (max-width: 390px) {
  header .demo {
    display: none;
  }
  .banner-sec .banner-txt h1 {
    font-size: 28px;
    margin-top: 15px;
  }
}/*# sourceMappingURL=main.css.map */