body {
  font-family: 'Poppins', sans-serif;
  color: #45505b;
  position: relative;
}
html, body {
  margin: 0;
  min-height: 100%;
}
a {
  color: #45505b;
}

a:hover {
  color: #45505b;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  background: transparent;
  color: #45505b;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: transparent;
  transition: background 0.2s ease-in-out;
}
.container {
  padding: 0px;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #008940;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
  display: none !important;
}

@media (max-width: 992px) {
  .header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

@media (min-width: 992px) {
  #main {
    margin-left: 0px;
    margin-top:74px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i {
  font-size: 20px;
}

.nav-menu a span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {
  .nav-menu a {
    width: 56px;
  }
  .nav-menu a span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  background: #008940;
}

.nav-menu a:hover span, .nav-menu .active > a span, .nav-menu li:hover > a span {
  color: #fff;
}

.nav-menu a:hover, .nav-menu li:hover > a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span, .nav-menu li:hover > a span {
  display: block;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  display:none;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #0563bb;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top right no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #45505b;
}

#hero p {
  color: #45505b;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #0563bb;
  letter-spacing: 1px;
}

#hero .social-links {
  margin-top: 30px;
}

#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

#hero .social-links a:hover {
  color: #0563bb;
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }
  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #0563bb;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts .count-box {
  padding: 30px 30px 25px 30px;
  margin-top: 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.facts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #0563bb;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
}

.facts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #011426;
}

.facts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# skills
--------------------------------------------------------------*/
.skills{padding: 60px 20px;}
.skills .container{background: transparent;}
.skills h1{color:#45505b;}
.skills .infO .text-right{margin:0px;}
.skills .infO h4{
  margin-bottom: 5px;
}
.downapp img {
  width:175px;
}
.skills .infO a {
  background: #fff;
  padding: 7px 13px;
  color: #008940;
  border-radius:5px;
  display: inline-block;
}
.skills .infO p{
  font-size: 14px;
  margin-bottom: 8px;
}
.skills .infO a .fa-arrow-right {
  margin-left: 7px;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume {
  background: url(../img/mid-bg.webp);
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
}
.resume span{
  display: inline-block;
    height: 8px;
    background: #fff;
    width: 75px;
}
.resume .container{padding: 0px;}
.resume h2{
  color: #fff;
  margin-bottom: 25px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio{
  background: url(../img/download-bg.webp);
  background-position-x: right;
  background-size: cover;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #45505b;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #0563bb;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(69, 80, 91, 0.8);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #d7dce1;
  border-left: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #d7dce1;
  border-right: 3px solid #d7dce1;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #45505b;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #45505b;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #45505b;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #148af9;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 10px;
  /* box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05); */
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #0563bb !important;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #0563bb;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #0563bb;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #0563bb;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #0678e3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding: 40px 0;
}

.portfolio-details .portfolio-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #0563bb !important;
}

.portfolio-details .portfolio-info {
  padding-top: 45px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
}

@media (max-width: 992px) {
  .portfolio-details .portfolio-info {
    padding-top: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #024E25;
  padding: 60px;
  color: rgba(255, 255, 255,0.9);
}
.footer .footermenu {
  display: flex;
}  
.footer .sList {
  width: 20%;
}
.footer h4{font-size: 19px;margin-bottom: 20px;}
.footer h4 a{
  color:#fff;
}
.footer li {
  list-style-type: none;
  margin-bottom: 5px;
}
.footer ul{padding: 0px;}
.footer li a{
  color: rgba(255, 255, 255,0.7);
  font-size: 14px;
  font-weight: 200;
}
.footer .res {
  color: rgba(255, 255, 255,0.7);
  font-size: 14px;
  margin-top: 20px;
}
/* new css */
.videoBtn{
  background: #008940;
  color: #fff !important;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  margin-right: 15px;transition: all 0.5s;
  width: 170px;
  display: inline-block;
  text-align: center;    cursor: pointer;
}
.videoBtn .play {
  width: 26px;
  margin-left: 5px;
}
.bookBtn{
  background: #F3FFF0;
  color: #4DCA73 !important;
  padding: 12px;
  border-radius: 10px;transition: all 0.5s;
  font-weight: 600;
  margin-right: 15px;  
  border:1px solid #4DCA73; 
  width: 170px;
  display: inline-block;
  text-align: center;margin-top: 35px;
}
h1{
  color: #008940;
  font-weight: bolder;
  font-size: 60px;margin-bottom: 15px;
}
.col-lg-7, .col-lg-8{    display: flex;
  flex-direction: column;
  justify-content: center;}
td{padding: 10px 0;}
.content .videoBtn{    background: #4DCA73 !important;margin-right: 0;}
.content .bookBtn{    margin-top: 25px !important;margin-right: 0;}
.mainHead{margin: 0px;padding: 5px 0px 5px;box-shadow: 0 0 1px 0px #ccc;position: fixed;width: 100%;
  top: 0;    z-index: 99999;background: #D9FCCF;}
.mainHead .tagline{border-left: 1px solid #4DCA73;padding-left: 15px;color:#008940;}
.mainHead .date{border-left: 1px solid #4DCA73;padding-left: 15px;color:#008940;}
.mainHead .container{position: relative;background: transparent;display: block;padding: 0;}

.portfolio .container{background: transparent;}
.portfolio h1{color:#45505b;}
.mobiview{display: none;}
.mainHead td img {
  width: 135px;
}
/* .downapp a:nth-child(3) {
  display: none;
}
.downapp td:nth-child(3) {
  display: none;
} */
.getSt{
  background: #fff;
    color: #008940 !important;
    font-weight: 900;
    padding: 20px 50px;
    width: auto;
    text-align: center;
    border-radius: 10px;
    font-size: 16px;
    margin-top: 30px;
    display: inline-block;
}
.feature h1{color:#fff;}
.feature p{color:#fff;}
.tdText{width: 50px;}
.prctable table{width:100%;}
.prctable .table1{width:31%;vertical-align: text-bottom;}
.prctable .table2{width:23%;background: #fff;  text-align: center;box-shadow: 0 0 8px #ddd;
  border-top-left-radius: 10px;border-bottom-left-radius: 10px;color:#008940; border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
}
.prctable .table3{width:23%;background: #008940;  text-align: center;
  border-radius: 10px;color: #fff;box-shadow: 0 0 8px #ddd;
  /* margin-top: -16px;position: absolute; */
}
.prctable .table4{width:23%;background: #fff;  text-align: center; box-shadow: 0 0 8px #ddd;
  border-top-right-radius: 10px;border-bottom-right-radius: 10px;color:#008940;
}
.prctable .title {
  vertical-align: top;
  font-size: 17px;
  font-weight: 600;border-top: 1px solid #eee;
}
.prctable .cut{font-size: 25px;}
.prctable h3{font-size: 35px;font-weight: 600;}
.prctable h5{font-weight: 100;}
.table1 .title p{font-size: 12px;font-weight: 100;}
.prctable .table2 td{font-weight: 600;}
.prctable .table3 td{font-weight: 600;}
.prctable .table4 td{font-weight: 600;}
.prctable .btn{ background: #008940;  color: #fff;padding: 12px 26px;transition: all 0.5s;font-weight: 600;}
.prctable .table3 .btn{color:#008940;background:#fff;}
.table1 td{padding-left:10px;}

.litterMore{ margin-top: 70px;}
.litterMore h3{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}
.litterMore p{
  font-size: 13px;
    color: #666;
}
.litterMore .midBlock{
  margin-top: 15px;
  background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px #ccc;
}
.midBlock strong{    font-size: 14px;
  color: #008940;}
.litterMore .midBlock p{
  font-size: 13px;
    color: #999;
}
.litterMore .midBlock h2{
  font-size: 25px;
    font-weight: 600;
}
.litterMore .midBlock h2 span{
  font-size: 18px;
  color: #999;
  vertical-align: top;
  margin-right: 1px;
}
.litterMore .midBlock h2 .permnth {
  font-size: 15px !important;
  font-weight: 300;
  position: relative;
  color: #45505b !important;
  top: 5px;
}
.litterMore .midBlock .buyBtn{
  background: #008940;
    color: #fff !important;
    padding: 6px 25px;
    border-radius: 30px;
    font-weight: normal;
    width: 100%;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    vertical-align: middle;
    margin-top: 0px;
}
.litterMore .midBlock .learnMore{
    color: #666 !important;
    font-weight: normal;
    width: 100%;
    display: inline-block;
    text-align: right;
    font-size: 13px;
    vertical-align: middle;
    margin-top: 0px;
    text-decoration: underline;
}
.litterMore .midBlock .learnMore:hover{
  color: #666;
  text-decoration: none;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999999; /* Sit on top */
  padding-top: 10px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
}

/* Modal Content */
#myModal .modal-content {
  background-color: #fefefe;
  margin: auto;
  width: 320px;
  position: relative;
  height: 553px;
  border: 10px solid #000;
  border-radius: 40px;
}

/* The Close Button */
#myModal .close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: -8px;
  right: -8px;
  width: 30px;
  height: 30px;
  background: #008940;
  text-align: center;
  border-radius: 50%;
  padding: 1px;
  opacity: 1;
  z-index: 9;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;  opacity: 1 !important;
}
.footerbook:hover{transition: all 0.5s;border-radius: 25px !important;}
.videoBtn:hover{transition: all 0.5s;border-radius: 25px;}
.bookBtn:hover{transition: all 0.5s;border-radius: 25px;}
.prctable .btn:hover{transition: all 0.5s;border-radius: 25px;}
.prctable .maintable {
  width: 100%;
  margin-bottom: 10px;
  margin-top: 10px;
  margin: auto;
}
.rupee {
  color: #999;
  font-weight: 600;
  font-size: 22px;
  position: relative;
  bottom: 16px;
  right: 5px;
}
.table3 .rupee {
  color: #e6e6e6;}
.hMobile{display: none;}
.tableh3{margin-top: 10px;}
.bookmob {display: none;}
/* Style the tab */
.tab {
  overflow: hidden;
  background-color: #F3FFF0;
  max-width: 450px;margin-bottom: 20px !important;
    margin: auto;    padding: 10px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;color: #008940;
  cursor: pointer;width: 32%;
  padding: 11px 5px;
  transition: 0.3s;margin-left: 3px;
  font-size: 17px;border-radius: 8px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #00873F;color:#fff;
}

/* Create an active/current tablink class */
.tab button.active {
  background: #00873F;
    color: #fff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
.swipe{ visibility: hidden;margin-bottom: 8px;}
#litterMore .container {
  padding: 25px 6px;
}
.youtube .modal-dialog{max-width: 700px;}
.bg {
  /* The image used */
  background-image: url("../img/main.png");

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature .card{
  background: #fff;
  border-radius: 20px;
  box-shadow: 2px 0px 10px 1px #bcdecb;
  padding: 20px;
  max-width: 66%;
  margin: -10px auto 30px;
  border: 0;
}

.feature .card .outerBlock{
  text-align: center;
  margin: 20px 0;
}
.feature .card .outerBlock h3{
  font-size: 14px;
  color: #999;
  margin: 15px 0 0 0;
}
@media (min-width: 440px) and (max-width:767px){
  .feature .card {
    max-width: 90%;
  }
  .feature .card .card-responsive{
    display: block;
    width: 100%;
    overflow-x: auto;
  }
  .col-xs-3.col-sm-3 {
    width: 25%;
    padding: 0 5px;
  }
}
@media (min-width: 300px) and (max-width:439px){
  .feature .card {
    max-width: 90%;
  }
  .feature .card .card-responsive{
    
  }
  .col-xs-3.col-sm-3 {
    width: 25%;
    padding: 0 1px;
  }
  .feature .card .outerBlock h3 {
    font-size: 12px;
  }
}
.team .container {
  background: transparent;
  }
.team h1 {
    color: #45505b;
}
.flexAlign{ align-items: flex-end;}
.offer .container {
  background: transparent;
  }
.offer h1 {
    color: #45505b;
}
.demo .container {
  background: transparent;
  }
.demo h1 {
    color: #45505b;
}
.data .container {
  background: transparent;
  }
.data h1 {
    color: #45505b;
}
.avail{
  list-style: none;
  display: inline-flex;
  padding: 0;
  color: #999;
  font-size: 14px;
  font-weight: 300;
  margin: 25px 0;
}
.avail li{
  margin-right: 8px;
  display: block;
}
.avail li span a{
  color: #666;
  border-radius: 20px;
  padding: 7px 18px;
  background: #e4e4e4;
  font-weight: 300;
}

.rightNav{
  float: right;
    margin: 0;
    padding: 0;
    background: inherit !important;
}
.rightNav .normalMenu{
  margin-top: 20px;
  display: inline-block;
  padding: 0 25px;
  color: #333;
}
.rightNav .normalMenu:hover{
text-decoration: underline;
}
.rightNav .normalMenu.last{border-right: 0;}

@media (min-width: 481px) and (max-width:768px){
  .rightNav .normalMenu{
    display: block;
    padding: 0;
    color: #333;
    border-right: none;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 0 0 10px;
  }
  .rightNav .normalMenu.last{border-bottom: 0; padding-bottom: 0;}
  .rightNav .normalMenu:hover{
    text-decoration: none;
    }
  .rightNav{
    position: absolute;
    right: 15px;
    top: -51px;
    float: inherit;
    display: initial;
  }
  .navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none;
    outline: none;
}
  .rightNav button{ 
    background: #fff !important;
    font-size: 14px;
    margin-top: 3px;
    padding: 0.55rem .75rem;
  }
  #navbarNav{
    background: rgb(255 255 255);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0;
  }
  .nav-item a{ margin: 5px 0 !important;}
  }
  @media (min-width: 300px) and (max-width:480px){
    .indVideo .viOuter{max-width: 300px !important;}
    .bookrow .parti {
      text-align: left !important;
  }
.indVideo .viOuter iframe{width:300px !important; height:169px !important;}
    .rightNav .normalMenu{
      display: block;
      padding: 0;
      color: #333;
      border-right: none;
      text-align: center;
      border-bottom: 1px solid #ccc;
      padding: 0 0 10px;
    }
    .rightNav .normalMenu.last{border-bottom: 0; padding-bottom: 0;}
    .rightNav .normalMenu:hover{
      text-decoration: none;
      }
    .onMob{
      border-top: 1px solid #f2f2f2;
    }
    .rightNav button{ 
      background: #fff !important;
      width: 93%;
    text-align: left;
    font-size: 17px;
    }
    .navbar-toggler:focus, .navbar-toggler:hover {
      text-decoration: none;
      outline: none;
  }
    .rightNav{
      position: relative;
      left: 15px;
      top: 6px;
      float: inherit;
      display: block;
      text-align: left;
      padding: 2px 0 9px;
    }
    #navbarNav{
      background: rgb(255 255 255);
      padding: 10px;
      border-left: 1px solid #ddd;
      margin-top: 0px;
      border-right: 1px solid #ddd;
      border-bottom: 1px solid #ddd;
      width: 93%;
    }
    .nav-item a{ 
      margin: 5px 0 !important;
      width: 100%;
    }
  }

  
/*--------------------------------------------------------------
# homepage feature button css
--------------------------------------------------------------*/

  .expfeatureBtn{ padding: 0 0 60px;}
  .expfeatureBtn .container {
    background: #fff;
    border-radius: 0;
    padding:0 25px 25px;
    text-align: center;
}
.expfeatureBtn .container .featureBtn{background: #008940;
    color: #fff !important;
    padding: 18px 50px;
    font-size: 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.5s;
    margin: 0;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}
.expfeatureBtn .container .featureBtn:hover {
    transition: all 0.5s;
    border-radius: 25px;
}

button.tablinks.normal:hover {
  background: unset;
  color: unset;
  cursor: unset;
}
button.tablinks.normal{color:#45505b;}
.video .vtheme {     margin-right: 09px;   border: 1px solid #ccc;margin-bottom: 8px;}
.video .vtheme .img_outer{position: relative;box-shadow: 0 0 4px 1px #a6a6a6;}
.video .vtheme .img_outer .playicon{
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 50px;
  cursor: pointer;
}

.title-h3{
  height: 45px;
  position: relative;
  z-index: 1;
  color: #008940;
  margin-bottom: 20px;
}
.title-h3:before {
  content : "";
  position: absolute;
  left    : 0;
  bottom  : 0;
  height: 1px;
  width: 50px;
  border-bottom: 3px solid #008940;
}
h5.pdfName {
  position: absolute;
  bottom: 0;
  color: #008940;
  width: 100%;
  text-align: center;
  font-size: 20px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-weight: 600;
}
.vtheme ul{
  position: absolute;
  top: 6px;
  right: 6px;
}
.vtheme .dropdown .btn{
  background: transparent;
  border: unset;
  padding: 0;
}
.vtheme ul img{width:23px;}
.vtheme .dropdown-toggle::after{display:none;}
.vtheme .list-inline>li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}
.pdfouter {
  display: flex;
  flex-wrap: wrap;
}
.pdfouter .vtheme .img_outer img{width:130px;}
.langOuter{text-align: right;} 
.langOuter .langbtn {
  cursor: pointer;
  border: 1px solid #4DCA73;
  color: #45505b;
  padding: 5px 15px;
  width: 100px;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
}
.langOuter .langbtn:hover{
  background:#4DCA73 ;
}
.langOuter .active{
  background:#4DCA73 !important;
}
/* pass css */
.pass h1{ font-size: 35px; margin-bottom: 0;}
.pass p{margin-bottom: 8px; font-size: 15px;}
.pass h4{margin-bottom: 0; font-size: 18px;}
.pass td {padding: 5px 0; font-size: 15px;}
.pass .bizpass h1{color: #765408;}
.pass .bizpass .container {background: #fffef9;}
@media screen and (max-width: 767px) {
  .bizpass {padding: 0 0 60px;}
}
.videoSection {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
.videoSection .vsingle {
  width: 20%;
  margin-bottom: 1%;
}
.videoSection .vsingle vtheme .img_outer .playicon{
  width: 35px;
}
/* new menu */
.newNav .nav-link{
  padding: 0 25px !important;
  color: #45505b !important;
}
li.nav-item.active {
  padding-bottom: 5px;
  border-bottom: 2px solid #45505b !important;
}
.newNav .nav-link:hover{text-decoration: unset;}
.newNav .dropdown-menu {
  background: #F3FFF0;min-width: 177px;
}
.newNav .dropdown-item:focus, .dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background-color: #4DCA73;
}
.pavilionuter .panel-title{
  margin-bottom: 0;
}
.pavilionuter .panel-title > a{
  display: block;
  height: 50px;
  vertical-align: middle;
  line-height: 50px;
  text-decoration: none !important;
  background: #f3f3f3;
  padding-left: 16px;
  color: #45505b;
  font-weight: 600;
  font-size: 16px;
}
.pavilionuter .panel-title > a:before {
  float: right !important;
  font-family: FontAwesome;
  content:"\2212";
  font-size: 30px;
    font-weight: bolder;
    padding-right: 8px;
}
.pavilionuter .panel-title > a.collapsed:before {
  float: right !important;
  content:"\002b";
  font-size: 30px;
    font-weight: bolder;
    padding-right: 8px;
}
.pavilionuter .panel-title > a:hover, 
.pavilionuter .panel-title > a:active, 
.pavilionuter .panel-title > a:focus  {
  text-decoration:none;
}
.pavilionuter .panel-collapse{
  padding: 15px 0;
  border-left: 1px solid #e2e0e0;
    border-right: 1px solid #e2e0e0;
    border-bottom: 1px solid #e2e0e0;
}
.pavilionuter .category ul{
  padding-left: 30px;
  font-size: 14px;
  margin-bottom: 0;
}
.pavilionuter .category .lastUl{padding-left: 15px;}
.pavilionuter .category ul li{
  padding: 3px 2px;
  font-weight: bold;
  font-size: 13px;
}
.pavilionuter  .title-h3 {
  height: 40px;
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 600;
  margin-top: 0px;    margin-bottom: 11px;
}
.pavilionuter p{position: relative;}
.pavilionuter a{text-decoration: underline !important;font-size: 14px;}
.pavilionuter span{display: none;}
.pavilionuter .seed h3{color: #8F3506;}
.pavilionuter .seed a{color: #8F3506;}
.pavilionuter .seed h3:before{border-color: #8F3506;}
.pavilionuter .agri h3{color: #684720;}
.pavilionuter .agri a{color: #684720;}
.pavilionuter .agri h3:before{border-color: #684720;}
.pavilionuter .water h3{color: #00B2F1;}
.pavilionuter .water a{color: #00B2F1;}
.pavilionuter .water h3:before{border-color: #00B2F1;}
.pavilionuter .tool h3{color: #00457D;}
.pavilionuter .toola{color: #00457D;}
.pavilionuter .tool h3:before{border-color: #00457D;}
.pavilionuter .cultivation h3{color: #329B48;}
.pavilionuter .cultivation a{color: #329B48;}
.pavilionuter .cultivation h3:before{border-color: #329B48;}
.pavilionuter .pashudhan h3{color: #684720;}
.pavilionuter .pashudhan a{color: #684720;}
.pavilionuter .pashudhan h3:before{border-color: #684720;}
.pavilionuter .gizmo h3{color: #008BD0;}
.pavilionuter .gizmo a{color: #008BD0;}
.pavilionuter .gizmo h3:before{border-color: #008BD0;}
.pavilionuter .agri_biz h3{color: #749E2E;}
.pavilionuter .agri_biz a{color: #749E2E;}
.pavilionuter .agri_biz h3:before{border-color: #749E2E;}
.pavilionuter .urjaa h3{color: #F4890B;}
.pavilionuter .urjaa a{color: #F4890B;}
.pavilionuter .urjaa h3:before{border-color: #F4890B;}
.pavilionuter .harvest h3{color: #BF9840;}
.pavilionuter .harvest a{color: #BF9840;}
.pavilionuter .harvest h3:before{border-color: #BF9840}
.pavilionuter .gyan h3{color: #005BA8;}
.pavilionuter .gyan a{color: #005BA8;}
.pavilionuter .gyan h3:before{border-color: #005BA8;}
.pavilionuter .internatinal h3{color: #71952D;}
.pavilionuter .internatinal a{color: #71952D;}
.pavilionuter .internatinal h3:before{border-color: #71952D;}
.pavilionuter .b2b h3{color: #2F6385;}
.pavilionuter .b2b a{color: #2F6385;}
.pavilionuter .b2b h3:before{border-color: #2F6385;}

/* ads page */
.ads .table-striped tbody tr:nth-of-type(even) {
  background-color:#ECF5E5;
}
.ads .table-striped tbody tr:nth-of-type(odd) {
  background-color:transparent;
}
.ads .table td, .table th{border: 1px solid #a4b392 !important;}
.ads .table td:nth-child(2) {text-align: right;}
.ads .table td:nth-child(3) {text-align: right;}
.ads .table th:nth-child(2) {text-align: center;}
.ads .table th:nth-child(3) {text-align: right;}
.ads .noteCont{text-align: left;}
.ads .noteCont p{margin-bottom: 8px;}
#indVideo{padding:0px;}
#indVideo .viOuter{max-width: 860px;  margin: 0 auto;}
#indVideo .viOuter ul{display: flex;}
#indVideo .viOuter ul li{display: inline-block;flex: 1;}
#indVideo .viOuter ul li a{
  height: 100%;
  border-color: #DDE1F0;
  border-radius: 0;
  margin: 0 -1px;
  padding: 20px 5px;font-size: 17px;
  color: #45505b;
  font-weight: 700;    text-align: center;
  background: #F3FFF0;  
}
#indVideo .viOuter ul li .active{
  box-shadow: 4px 0 20px -4px rgba(15,31,41,.08), -4px 0 20px -4px rgba(15,31,41,.08), 0 -4px 20px -8px rgba(15,31,41,.08), 0 0 3px rgba(15,31,41,.04);
  border: 0;
  margin: 0 1px;
  transform: translateY(-2px);
  z-index: 1;
  background: #fff;
}
#indVideo .viOuter .vintro {
  background: #fff;
  margin: 0px;    padding: 5px 15px;
}
#indVideo .viOuter ul li a span{
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
}
#indVideo .viOuter .tabmain{
  box-shadow: 4px 0 20px -4px rgba(15,31,41,.08), -4px 0 20px -4px rgba(15,31,41,.08), 0 20px 20px -8px rgba(15,31,41,.08), 0 0 3px rgba(15,31,41,.04);
}
#indVideo .viOuter .bookrow{margin: 0;
  padding: 5px 15px;}
/* #indVideo .viOuter ul li a span::before{
  content: "\27B7";
  display: inline-block;
  width: 17px;
  height: 17px;
  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  border-radius: 100%;
  background-color: #fff;
  margin-right: 2px;
} */

/* Start Slider */
.bx-wrapper {
  box-shadow: none !important;
  border: none !important;
  margin: auto !important;  
}
.bx-wrapper .bx-caption {
  display:none;  
}

.bx-wrapper .bx-caption span {
  display: none !important;
}
.logosImgs {
  display: -webkit-flex;
  display: flex;
  justify-content: center;  
}
.logosImgs img {
  max-height: 100%;
}
.bx-wrapper {
  position: relative;
  margin-bottom: 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  width: 100%;
}
.bxslider {
  margin: 0;
  padding: 0;
}
ul.bxslider {
  list-style: none;
}
.bx-viewport {
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
}
.bookBtn .fa-plus-circle{    font-size: 26px;
  vertical-align: middle;
  margin-left: 5px;}
/* LOADER */
.bx-wrapper .bx-loading {
  height: 50px;
  background: url('../img/loader.gif') center center no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* PAGER */
.bx-wrapper .bx-pager{display: none;}
.bx-wrapper .bx-prev {
  left: 10px;
  background: url('../img/controls.png') no-repeat 0 -32px;
}
.bx-wrapper .bx-prev:hover,
.bx-wrapper .bx-prev:focus {
  background-position: 0 0;
}
.bx-wrapper .bx-next {
  right: 10px;
  background: url('../img/controls.png') no-repeat -43px -32px;
}
.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/*new Css */
.downloadS{
  width: 215px;
}
.downloadS img{width: 25px;margin:0 3px;}
.about h1{
  margin: 0;
  opacity: 0.1;
  font-size: 95px;
  position: relative;
  top: 20px;
}
.about h2{color: #004D24;
  font-weight: bolder;
  font-size: 50px;
  margin-bottom: 15px;}
.about .LoginM {
  display: flex;
  background: #fff;
  width: 55%;
  padding: 5px;
  align-items: center;
  margin-top:15px;
}
.about .text {
  margin: 0;
  width: 72%;
  padding-left: 15px;
  color: #9e9e9e;
}
.about .lbtn {
  background: #008940;
  color: #fff;
  padding: 10px 20px 10px 35px;
  border-top-left-radius: 45px;
  font-weight: 600;
}
.about .logD {
  color: #008940;
  font-size: 14px;
  margin: 2px 0;
}
.downapp h5{
  font-weight: 600;
  margin-bottom: 8px;    color: #008940;
}
.abtop{
  background-size: contain;
  padding: 20px 0 50px;
  background: url(../img/top-bg.png);
  background-position-x: right;
  background-position-y: bottom;
}
.about .downapp img{margin-right: 10px;}
.facts .row {
  align-items: center;
}
.facts h2 {
  color: #004D24;
  font-weight: 600;
  padding-left: 35px;
  border-left: 8px solid #008940;
}
.skills .infO {
  position: absolute;
  bottom: 0px;
  background: rgba(15, 125, 52, 0.6);
  width: 100%;
  padding: 10px;
  color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.portfolio h1{
  margin: 0;
  opacity: 0.1;
  font-size: 50px;
  color: #008940;
}
.portfolio h2{color: #004D24;
  font-weight: bolder;
  font-size: 50px;
  margin-bottom: 15px;
  padding-left: 35px;
  border-left: 10px solid #008940;
}
.portfolio .hLine {
  width: 8px;
  background: #008940;
  height: 110px;
  margin-top: 11px;
}
.portfolio .cont {
  padding-left: 40px;
}
.notify{
  background: #F1FFED;
}
.notify h2 {
  color: #024E25;
  font-weight: 600;
  margin-bottom: 25px;
}
.notify p{color:#008940}
.notify input{
  border-radius: 15px;
  border: 1px solid #ccc;
  height: 40px;
  width: 300px;
  box-shadow: 0px 3px 29px 0px #60fba8;
  padding: 3px 10px;
}
.notify .textO {margin-top: 20px;position: relative;display: inline-block;}
.notify .textO img{position: absolute;
  right: 5px;
  width: 30px;
  top: 5px;}
.productTop{
  background-size: contain;
  padding: 25px 0;
  background: url(../img/product-bg.png);
  background-position-x: right;
  background-position-y: bottom;
}
.services .step{
  background: url(../img/services-bg.png);
  text-align: center;
  color: #fff;
  padding: 35px;
  border-radius: 10px;
  height: 300px;
}
.services .step img{height:70px;margin-bottom:30px;}
.services .step p{
  font-size: 15px;
}
.services .step h4{margin-bottom: 17px;}
.gpSec{
  background: url(../img/greenpass-bg.png);
  background-position-x: right;
  padding: 80px;
  background-position-y: bottom;
  color: #fff;
}
.gpSec h2 {
  color: #fff !important;
}
.features .sec {
  display: flex;
  align-items: center;
  border-radius: 7px;
  background: #EFFFD8;
  margin-bottom: 10px;
}
.features .imgO {
  background: #EFFFD8;
  padding: 15px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  text-align: center;
}
.features .imgO i.fa.fa-plus {
  color: #008940;
  font-size: 30px;
}
.features .imgO img{height: 35px;}
.features .infO {
  background: #E1FFB5;
  padding: 10px 10px 10px 35px;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #008940;
  width: 100%;
}
.features .membership{
  background: url(../img/services-bg.png);
  padding: 32px 10px;
  color: #fff;
  border-radius: 10px;
}
.features .pln {
  display: flex;
}
.features .membership h4{
  width: 50%;
  margin-bottom: 24px;
  color: #DAFDD0;
  line-height: 35px;
  font-size: 28px;
}
.features .membership p{
  margin: 0px;font-size: 14px;
}
.features button {
  background: transparent;
  color: #fff;
  padding: 9px;
  border: 1px solid #fff;
  border-radius: 10px;
  margin-left: 10px;
}
.prtSec{
  background: url(../img/partner-bg.png);
  background-position-x: right;
  padding: 80px;
  background-position-y: bottom;
  color: #fff;
}
.prtSec h2{color:#fff;}
.prtSec a{
  background: #FFE243;
  padding: 15px 25px;
  display: inline-block;
  font-weight: 600;
  margin-top: 8px;
  border: 2px solid #FFE243;
  transition: background-color 1s ease, color .8s ease, border-radius .8s ease, transform .8s;
}
.prtSec a:hover {
  background: transparent;
  border-radius: 15px;
  color: #ffE243;
}
.data {
  text-align: center;
}
.data h3{
  color:#008940;
  margin-bottom: 8px;
}
.data .countM {
  display: flex;
  width: 930px;
  margin: auto;
}
.data .countM .countS{
  display: flex;
  background: url(../img/count-bg.png);
  padding: 15px;
  width: 33.33%;
  border-radius: 8px;
  margin: 0 1%;
  background-repeat: no-repeat;
  align-items: center;
  box-shadow: 0 4px 7px #ccc;
}
.data .countM .countS p{margin: 0px;}
.data .countM .countS .info{margin-left: 15px;    color: #008940;
  text-align: left;}
.data .countM .countS img{
  height: 36px;
  margin-right: 5px;
}
.work .step {
  text-align: center;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 10px #ccc;
  background: #fff;
}
.work .step img{
  width: 100px;
  margin-bottom: 25px;
}
.work .step h5{
  margin: 15px 0;
  color:#008940;
}
.conbg{
  background: #DAFDD0;
  border-radius: 10px;
  padding: 15px;
}
h2.title{
  text-align: center;
  color:#008940;
}
#work {
  background: url(../../img/work-bg.png);
  background-repeat: no-repeat;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  background-position: center;
  background-size: cover;
}
.account {
  display: flex;
  align-items: center;
  background: #FBB93D;
  position: relative;
  bottom: 140px
}
.account .info{
  background: radial-gradient(circle at right, transparent 141px, #B9831F 92px);
  width: 75%;
  padding: 45px;
  color: #fff;
}
.account h1{color:#fff;font-size: 35px;}
.account a{
  background: #fff;
  padding: 15px 25px;
  color: #674300;
  box-shadow: 0 3px 9px #808080;
  font-weight: 700;
}
.account p{
  color: #fff;
  margin: 0px;
}
.mainHead.active {
  background: #D9FCCF;
  -webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}
.flogo{
  width: 25% !important;
}
.fmenu{
  width: 15% !important;
}
.productTop .row.content {
  align-items: center;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }  
}
@media (min-width: 300px) and (max-width:768px){
  #litterMore .container {
    padding: 25px 25px;
}
.footer{
  padding: 20px;
}
.footer .footermenu{
  flex-direction: column;
}
.footer .sList {
  width: 100% !important;
}
.footer h4 {
    margin-bottom: 9px;
    margin-top: 15px;
}
.abtop{
  background-position-x: left;
  background-size: cover;
}
.abtop table{
  width: 100%;
}
.abtop table td{
  display:block;
  margin-bottom: 15px;
}
.title-h3:before{
  display: none;
}
.portfolio .cont{
  padding-left: 0px;
  text-align: center;
}
.title-h3{
  margin-top: 10px;
}
.productTop table{
  width: 100%;
}
.productTop table td{
  display:block;
  margin-bottom: 15px;
}
.services .step{
  margin-bottom: 15px;
}
.facts h2{
  padding-left: 0px;
  border-left: none;
  margin-bottom: 20px;
  text-align: center;
}
.facts p{
  text-align: center;
}
iframe {
  width: 100%;
}
.portfolio h2{
  padding-left: 0px;
  border-left: none;
  margin-bottom: 20px;
  text-align: center;
}
.portfolio .downapp img{
  margin-bottom: 10px;
}
.youtube .modal-dialog {max-width: 320px;margin: auto;}
.youtube iframe{width:320px; height:180px;}
.footerbook{margin-bottom: 80px;}
  /* .mainHead .videoBtn{display: none;} */
  #footer h3{margin-bottom: 70px;}
  .mainHead{padding: 5px 10px;}
  .mainHead .col-lg-6{padding:0px;}
  .mainHead .tagline{font-size: 13px;padding: 0px 5px 0px 10px;line-height: 16px;}
  .mainHead .date{font-size: 13px;padding: 0px 5px 0px 10px;line-height: 16px;}
  #main{margin-top: 115px;}
  .about{text-align: center;}
  h1{font-size: 35px !important;text-align: center;}
  .about .content{padding:0px;text-align: center;}
  .bookdesk {margin:10px 0 !important;}
  .bookmob {display: inline-block;margin-top: 15px;margin-bottom: 10px;}
  .container{padding:15px;}
  .videoBtn {margin-bottom: 20px;}
  .about .down{left: unset;right: 0;}
  .mobiview{display: block;margin-bottom: 17px;}
  .fullview{display:none;}
  .tdText{width: 40px;}
  .mainHead td:first-child {padding:10px;}
  .prctable .maintable{width:700px;}
  .mainHead td img {
    width: 100px;
  }
  /* .modal-content iframe{width: 100% !important;
    height: 600px !important;}
    .modal-content{width:340px;} */
  .prctable .table3{
    position:inherit;
    height: inherit;
    margin-top: 0;
  }
  .prctable .table1{
    padding-left: 8px;
    padding-right: 8px;
  }
  .prctable .table2{
    padding-left: 8px;
    padding-right: 8px;
  }
  .prctable .table3{
    padding-left: 8px;
    padding-right: 8px;
  }
  .hMobile{display: block;visibility: hidden;}
  .tableh3{margin-top: 7px;}
  .tab button{padding: 11px 6px;}
  .tab{padding: 0px;}
  .swipe{visibility: visible;position: relative;bottom: 15px;}
  #table .container{padding:10px !important;}
  .vtheme .img-fluid{width:100%;}
  .vtheme .img_outer{    margin-bottom: 10px;}
  .vmodal iframe{    width: 100% !important;
    height: 300px !important;}
}
@media (min-width: 300px) and (max-width:320px){.tab button{padding: 11px 0px;font-size: 15px;width: 48%;}}
@media (min-width: 480px) and (max-width:768px){
  .bookmob {display: none !important;}
  .bookdesk {display: inline-block !important;}
  /* .modal-content iframe{    width: 100% !important;
    height: 700px !important;
  }
    .modal-content{width:98%;} */
}
@media (min-width: 1600px) and (max-width:2500px){
  .midBlock br{display:none;}
}
