 
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
overflow-x: hidden;}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
	overflow-x: hidden;
}

a {
  color: #87c907;
  text-decoration: none;
}

a:hover {
  color: #f1775d;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# 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 #87c907;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #87c907;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #f06f54;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled {
  padding: 12px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #0b2341;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #87c907;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #79b309;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #87c907;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #87c907;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 767px) {
  .mobile-nav-toggle {
    display: block;
	  background: #88c909;
	  padding: 5px;
  }

  .navbar ul {
    display: none;
  }
	
	#header .logo img {width: 60px;}
	
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #87c907;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #87c907;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(4, 12, 21, 0.5);
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #hero p {
    width: 50%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: 50% 10%;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #87c907;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #79b309;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #87c907;
}

@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f6f9fd;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #87c907;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #85bf19;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {position: relative; background: #eff3e7;}

 .img-wrapper {
   /*  width: 600px;*/
     max-height: 500px;
	 height: 100%;
   overflow: hidden;
	 position: relative;
 }
 
 .inner-img {
   transition: 0.3s;
	 border: solid 7px #ffffff;
    border-radius: 15px;
	 
 }
 .inner-img:hover {
   transform: scale(1.1);
 }


.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #87c907;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #87c907;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #87c907;
}

.about .content .btn-learn-more:hover {
  background: #87c907;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 50px;
	background: #87c907 ;
	
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
	background: #fff;
	transition: 1s all;
}

.counts .count-box:hover {
	
/*	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);*/
  webkit-box-shadow: #87c907 0px 20px 25px -25px;
  box-shadow: #87c907 0px 20px 25px -25px;
  transform: translateY(-5px);
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #87c907;
  float: left;
	margin-top: -10px;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #213103;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
    text-align: left;
    font-weight: 300;
	color: 000;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #87c907;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #87c907;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#87c907 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #87c907;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
/*  transition: all ease-in-out 0.3s;*/
	transition: 1s all;
}
.services .icon-box:hover {
	
/*	box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);*/
  webkit-box-shadow: #87c907 0px 20px 25px -25px;
  box-shadow: #87c907 0px 20px 25px -25px;
  transform: translateY(-5px);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #87c907;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 35px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #d9efb1;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #0b2341;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #f0fadc;
  border-color: #87c907;
}

.services .icon-box:hover .icon {
/*  background: #fff;*/
}

.services .icon-box:hover .icon i {
/*  color: #87c907;*/
}

.services .icon-box:hover .icon::before {
  background: #d9efb1;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
/*  color: #fff;*/
}

#testimonials {
  position: relative;
  overflow: hidden;
  padding: 50px 0px;
}
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("../images/feedback.jpeg") center center / cover no-repeat;
  filter: grayscale(100%);
  z-index: 0;
}
#testimonials .testwrp {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}
 
 


#testimonials .testwrp .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
   
}

#testimonials .testwrp .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 4px 10px;
}

#testimonials .testwrp .section-title p {
  margin: 0;
  
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  
  color: #85bf19;
}


#testimonials .testwrp p.feedtext {font-size: 1rem; color: #fff;}












/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
/*  background: #0b2341;*/
	background: linear-gradient(rgba(2, 2, 2, 0.7), rgba(0, 0, 0, 0.7)), url(../images/book-service.jpg) fixed center center;
    background-size: cover;
    
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #87c907;
  color: #000;
	background: #87c907;
}

.cta .cta-btn:hover {
  background: #dee9c8;
  border: 2px solid #dee9c8;
	color: #000;
}

 
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 20px 30px 20px;
  background: #fff;
	position: relative;
}

.contact .info-box .location {
display: inline-block;
  background: #e84f13;
  border-radius: 20px;
  padding: 3px 15px;
  font-size: 1rem;
  color: #fff;
	left: 0;
	position: absolute;
	top: -14px;
		
}

.contact .info-box i {
  font-size: 32px;
  color: #87c907;
  border-radius: 50%;
  padding: 8px;
  border: 1px dotted #87c907;
}

    



.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}



.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.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;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #87c907;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #87c907;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #87c907;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
 

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
 
  
.footernew {
  position: relative;
  padding: 5px 0;
  background: #a6cf5666;
}
.footernew .ftwrap {
  padding: 0px 0;
}

.footernew .ftwrap ul {list-style: none; padding: 0; margin: 0; text-align: center;}
.footernew .ftwrap ul li {display: inline; margin-right: 15px; font-size: .9rem;}
.footernew .ftwrap ul li a {text-decoration: none; color: #000;}
.footernew .ftwrap ul li a:hover {text-decoration: underline;}

.footernew .ftwrap p {
  text-align: center;
  font-size: .9rem;
  padding: 5px 0;
  margin: 0px;
  color: #333;
  font-weight: normal;
}

.footernew .ftwrap p a { text-decoration: none; color: #1518ff;}
.footernew .ftwrap p a:hover {text-decoration:underline;}

.floatbtn {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 64px;
  right: 10px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  box-shadow: 2px 2px 3px #999;
  z-index: 99999;
	display: flex;
  justify-content: center;
  align-items: center;
}
 
.floatbtn:hover {color: #333;}

#drawer .contact-btn {
   position: relative;
   right: 83px;
   text-transform: uppercase;
   top: 155px;
   font-weight: 600;
   padding: 5px 20px;
   background-color: #ff7510;
   color: #fff;
   font-size: 1.2rem;
   border: none;
   border-radius: 8px 8px 0 0px;
   cursor: pointer;
   z-index: 999;
   rotate: 270deg;
 }
 .drawer {
   position: fixed;
   top: 20%;
   right: -300px; /* initially off-screen */
   width: 300px;
   /*  height: 40%;*/
   /*  background-color: #fff;*/
   transition: right 0.3s ease;
   z-index: 998;
 }
 #drawer .drawer-content {
   padding: 20px;
   background: #fff2e9;
   position: relative;
   border-left: solid 3px #ff7510;
   border-top: solid 1px #f2f2f2;
   border-bottom: solid 1px #f2f2f2;
 }
 #drawer .drawer-content h2 {
   font-size: 1rem;
   text-transform: uppercase;
   line-height: 1.5;
   font-family: 'Roboto';
   font-weight: 400;
   color: #222;
   text-align: left;
   margin: 0px;
   padding: 0px 0px 0 0;
 }
 #drawer .drawer-content p {
   font-size: .9rem;
   line-height: 1.5;
   font-family: 'Roboto';
   font-weight: 400;
   color: #666;
   text-align: left;
   margin: 0px;
   padding: 5px 0px 0 0;
 }
 #drawer .whtchat {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 2;
   font-weight: normal;
   text-align: center;
   white-space: nowrap;
   vertical-align: middle;
   font-family: 'Roboto';
   padding: 10px 30px 10px 30px;
   font-size: 1rem;
   line-height: 1.1;
   outline: none;
   text-decoration: none;
   color: #fff;
   background: #25d366;
   border: 1px solid #25d366;
   transition: all 0.3s ease 0s;
   margin: 10px 0 0 0px;
   /*  border-radius: 20px;*/
   bottom: 0px;
   position: inherit;
   text-transform: inherit;
   z-index: 0;
   border-radius: 10px;
   width: auto;
 }
 #drawer .whtchat:hover {
   background: #686868;
   border: 1px solid #686868;
   color: #fff;
 }
 .drawer a.applybtnew {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 2;
   font-weight: normal;
   text-align: center;
   white-space: nowrap;
   vertical-align: middle;
   font-family: 'Roboto';
   padding: 10px 30px 10px 30px;
   font-size: 1rem;
   line-height: 1.1;
   outline: none;
   text-decoration: none;
   color: #fff;
   background: #0672cb;
   border: 1px solid #0672cb;
   transition: all 0.3s ease 0s;
   margin: 15px 0 0 0px;
   /*  border-radius: 20px;*/
   bottom: 0px;
   position: inherit;
   text-transform: inherit;
   z-index: 0;
   border-radius: 10px;
   width: auto;
 }
 .drawer a.applybtnew:hover {
   background: #686868;
   border: 1px solid #686868;
   color: #fff;
   /*  border-radius: 20px;*/
 }
 #drawer .btn-close {
   position: absolute;
   top: 0px;
   right: 0px;
 }
 @keyframes pulse {
   0% {
     transform: scale(1);
   }
   50% {
     transform: scale(1.05);
   }
   100% {
     transform: scale(1);
   }
 }
 @keyframes swing {
   0% {
     transform: rotate(0deg);
   }
   25% {
     transform: rotate(10deg);
   }
   50% {
     transform: rotate(-10deg);
   }
   75% {
     transform: rotate(5deg);
   }
   100% {
     transform: rotate(0deg);
   }
 }
 .pulse {
   animation: pulse 1s infinite ease-in-out;
 }
 .swing {
   animation: swing 1s infinite ease-in-out;
   transform-origin: top center;
 }

#contactpage {
  position: relative;
  padding: 30px 0px 30px 0;
  background: #fff url("../images/contact-us-banner.jpg") top/cover no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  min-height: 400px;
  height: 100%;
}
#contactpage .conwrap {
  padding: 0px 0px 0px 0px;
}
#contactpage .conwrap h1 {
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  font-weight: 300;
  padding: 5px 20px 10px 20px;
  display: inline-block;
  background: #83b81af7;
  margin-top: 150px;
}
#contactpage .conwrap p {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
  text-align: left;
  font-weight: 500;
  padding: 10px 20px;
  display: block;
  background: #83b81af7;
  width: fit-content;
  margin: 10px 0px;
}

#booknow {
  position: relative;
  padding: 20px 0 20px 0px;
  background: #f5f5f5;
  /*	background: rgb(219,242,170);*/
  /*background: linear-gradient(151deg, rgba(219,242,170,1) 0%, rgba(255,255,255,1) 56%, rgba(181,236,67,1) 100%);*/
  /*    background: #fff url("../images/contact_bg_new.jpg") top/cover no-repeat;*/
}
#booknow .bokwrap {
  padding: 0px 0px 0px 0px;
}
 
#booknow .bokwrap .card {
  border: solid 1px #97de09;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 14px 8px rgba(151, 222, 9, 0.1);
  /*
background: rgb(219,242,170);
background: linear-gradient(151deg, rgba(219,242,170,0.41220238095238093) 0%, rgba(255,255,255,1) 98%, rgba(181,236,67,1) 100%);
*/
  background: rgb(181, 236, 67);
  background: linear-gradient(225deg, rgba(181, 236, 67, 1) 3%, rgba(219, 242, 170, 0.41220238095238093) 3%, rgba(255, 255, 255, 1) 97%, rgba(181, 236, 67, 1) 97%);
}
#booknow .bokwrap .card h4 {
  padding: 15px;
  background: #b5ec43;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  position: relative;
  margin: 0 auto;
  top: -50px;
  font-weight: 700;
  border-radius: 5px;
}
#booknow .bokwrap .form-step h5 {
  background: #ceea9a;
  padding: 10px 15px;
  font-weight: 600;
  border-bottom: dashed 1px #7bc74d;
  text-transform: uppercase;
  font-size: 1.1rem;
}
#booknow .bokwrap .form-step .form-label {
  font-weight: 500;
  color: #333;
}
#booknow .bokwrap .form-step .form-select {
  display: block;
  width: 100%;
  padding: 0.5rem 2.25rem 0.5rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background-color: #f3f9e7;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #98de0a;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-left: 3px solid #98de0a;
}
#booknow .bokwrap .form-step .form-select:focus {
  background-color: #fff;
  border-color: #98de0a;
  outline: 0;
  box-shadow: 0 0 0 0.125rem rgba(152, 222, 10, 0.5);
}
#booknow .bokwrap .form-step .form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background-color: #f3f9e7;
  background-clip: padding-box;
  border: 1px solid #98de0a;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  border-left: 3px solid #98de0a;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#booknow .bokwrap .form-step .form-control:focus {
  background-color: #fff;
  border-color: #98de0a;
  outline: 0;
  box-shadow: 0 0 0 0.125rem rgba(152, 222, 10, 0.5);
}
#booknow .bokwrap .btn-custom {
  /* Initial background gradient */
  background: rgb(213, 255, 131);
  background: linear-gradient(86deg, rgba(213, 255, 131, 1) 23%, rgba(151, 222, 9, 1) 86%);
  border-color: #7bc74d;
  color: #000;
  font-weight: 500;
  padding: 10px;
  width: 125px;
  transition: all 1s ease-in-out; /* Smooth and slightly slower transition */
}
#booknow .bokwrap .customsubmit {
  background: #7bc74d;
}
#booknow .bokwrap .btn-custom:hover {
  /* Hover background gradient */
  background: rgb(213, 255, 131);
  background: linear-gradient(86deg, rgba(213, 255, 131, 1) 0%, rgba(151, 222, 9, 1) 12%);
  /*  border-color: #007acc;*/
  border-color: #68a13b;
  box-shadow: 0 5px 15px rgba(213, 255, 131, 1);
  color: #000;
}
#booknow .bokwrap .icon-container {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  padding: 0px 0px;
}
#booknow .bokwrap .icon-btn {
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 2px solid #7bc74d;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  background-color: white;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
#booknow .bokwrap .model-select {
  display: none;
}
#booknow .bokwrap .icon-btn img {
  width: 80px;
  padding: 10px;
  filter: saturate(3)
}
#booknow .bokwrap .icon-btn:hover {
  background-color: #e6f3c8;
}
#booknow .bokwrap .icon-btn.active1 {
  background-color: #b5ec43;
  color: #000;
}
#booknow .bokwrap .icon-btn:hover img {
  filter: saturate(0)
}
#booknow .bokwrap .icon-btn.active img {
  filter: saturate(0)
}
#booknow .bokwrap .time-slot-main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px;
}
/* Styling for each time slot */
#booknow .bokwrap .time-slot {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 10px 10px;
  border: 1px dotted #b5ec43;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  font-size: 1rem;
  transition: 0.3s;
}
/* Radio button styling */
#booknow .bokwrap .time-slot input[type="radio"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: green;
}
/* Default background */
#booknow .bokwrap .time-slot {
  background-color: #e6f3c8;
  color: #000;
  border: 1px solid #98de0a;
}
#booknow .bokwrap .time-slot:hover {
  background-color: #98de0a;
  /*	background-color: #e6f3c8;*/
}
/* Highlight selected time slot */
#booknow .bokwrap .time-slot.active {
  background-color: #98de0a;
  color: #333;
}
/* Custom tick mark added inside the label */
#booknow .bokwrap .time-slot.active input[type="radio"]::before {
  content: "✔";
  font-size: 10px;
  color: #fff;
  display: block;
  position: absolute;
  left: 16px;
  top: 10px;
}
/* Zoom effect and tick on hover */
#booknow .bokwrap .time-slot:hover {
  transform: scale(1.01); /* Slight zoom effect */
  /*	box-shadow: 0 14px 8px rgba(151, 222, 9, 0.1);*/
  box-shadow: 0 4px 7px rgba(151, 222, 9, 0.5);
}
#booknow .bokwrap .selectservice-main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 1px;
}
/* Styling for each slotservice service */
#booknow .bokwrap .slotservice {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  border: 1px dotted #b5ec43;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
/* Radio button styling */
#booknow .bokwrap .slotservice input[type="radio"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: green;
}
/* Default background */
#booknow .bokwrap .slotservice {
  background-color: #e6f3c8;
  color: #000;
  border: 1px solid #98de0a;
}
#booknow .bokwrap .slotservice:hover {
  background-color: #98de0a;
  /*	background-color: #e6f3c8;*/
}
/* Highlight selected time slot */
#booknow .bokwrap .slotservice.active {
  background-color: #98de0a;
  color: #333;
}
/* Custom tick mark added inside the label */
#booknow .bokwrap .slotservice.active input[type="radio"]::before {
  content: "✔";
  font-size: 10px;
  color: #fff;
  display: block;
  position: absolute;
  left: 16px;
  top: 10px;
}
/* Zoom effect and tick on hover */
#booknow .bokwrap .slotservice:hover {
  transform: scale(1.01); /* Slight zoom effect */
  /*	box-shadow: 0 14px 8px rgba(151, 222, 9, 0.1);*/
  box-shadow: 0 4px 7px rgba(151, 222, 9, 0.5);
}
#booknow .bokwrap .slotservice {
  width: 120px;
}
#booknow .bokwrap .slotservice:hover {
  width: 130px;
}
#booknow .bokwrap .slotservice.active {
  background-color: #98de0a;
  color: #333;
}
#booknow .bokwrap .servicetype-main {
  display: flex;
  justify-content: flex-start;
  position: relative;
  flex-wrap: nowrap;
}
/* Styling for each service type */
#booknow .bokwrap .servicetype {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  background-color: #e6f3c8;
  color: #000;
  border: 1px solid #98de0a;
}
/* Radio button styling */
#booknow .bokwrap .servicetype input[type="radio"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: green;
}
/* Hover effect */
#booknow .bokwrap .servicetype:hover {
  background-color: #98de0a;
  box-shadow: 0 4px 7px rgba(151, 222, 9, 0.5);
}
/* Active state */
#booknow .bokwrap .servicetype.active {
  background-color: #98de0a;
  color: #333;
}
/* Custom tick mark added inside the label */
#booknow .bokwrap .servicetype.active input[type="radio"]::before {
  content: "✔";
  font-size: 10px;
  color: #fff;
  display: block;
  position: absolute;
  left: 16px;
  top: 10px;
}
/* Zoom effect and tick on hover */
#booknow .bokwrap .servicetype:hover {
  transform: scale(1.01); /* Slight zoom effect */
  /*	box-shadow: 0 14px 8px rgba(151, 222, 9, 0.1);*/
  box-shadow: 0 4px 7px rgba(151, 222, 9, 0.5);
}
#booknow .bokwrap .servicetype {
  width: 50%;
}
#booknow .bokwrap .servicetype.active {
  background-color: #98de0a;
  color: #333;
}
/* Service content divs */
#booknow .bokwrap .service-content {
  display: none;
  margin: 20px 0px;
  padding: 20px;
  /*    border: 1px solid #eee;*/
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 8px rgba(206, 212, 218, 0.5);
}
#booknow .bokwrap .service-content.active {
  display: block;
}
#booknow .bokwrap .service-content .tablediv {
  box-shadow: 0 4px 10px rgba(151, 222, 9, 0.8);
  border-radius: 10px;
  background: #fff;
  padding: 15px;
}
#booknow .bokwrap .service-content .tablediv table tr, #booknow .bokwrap .service-content .tablediv table td, #booknow .bokwrap .service-content .tablediv table, #booknow .bokwrap .service-content .tablediv table th {
  border: solid #98de0a 1px;
}
#booknow .bokwrap .service-content .tablediv table thead {
  background: #e6f3c8 !important;
  font-size: .9rem;
}
#booknow .bokwrap .service-content .tablediv table thead th {
  border-bottom: 2px solid #98de0a;
}
#booknow .bokwrap .service-content .tablediv table tr {
  font-weight: 500;
}
#booknow .bokwrap .service-content .tablediv table .tfoot {
  /*		background: #98de0a !important; */
  background: linear-gradient(86deg, rgba(213, 255, 131, 1) 23%, rgba(151, 222, 9, 1) 86%);
  color: #304406;
}
#booknow .bokwrap .pulse {
  animation: pulseGlow 1.5s infinite;
}
@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6);
    opacity: 1;
  }
}



#booknow .bokwrap a {text-decoration: none; color: #87c907;}
#booknow .bokwrap a:hover {text-decoration: underline;}






@media (max-width: 767px) {

#hero {
    height: 60vh;
	}
	
	
	
}
