.btn.btn-primary {
  background-color: #94C52E;
  font-weight: 400;
  border-radius: 8px;
  border-color: #94C52E;
}
.btn.btn-primary:hover {
  background-color: #94C52E;
  font-weight: 400;
  border-radius: 8px;
  border-color: #94C52E;
}
.btn.btn-primary:focus {
  background-color: #94C52E;
  font-weight: 400;
  border-radius: 8px;
  border-color: #94C52E;
}
.btn.btn-primary:active {
  background-color: #94C52E;
  font-weight: 400;
  border-radius: 8px;
  border-color: #94C52E;
}

@media (min-width: 768px) {
  #booking a {
    width: 3%;
  }
}
.test button:focus i {
  display: block;
}
/* .test button:hover {
  color: #0d6efd;
  background-color: #fff;
} */
.test button:focus {
  border: 2px solid #0d6efd;
  box-shadow: none;
}
/* .test button:hover i {
  color: #0d6efd;
} */
.test button {
  border-radius: 0px;
  transition: 1s;
  padding-top: 25px;
  padding-bottom: 25px;
  height: 100%;
  width: 100%;
}
.test i {
  font-size: 20px;
  left: 45%;
  position: absolute;
  bottom: -14px;
  z-index: 999;
  display: none;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Source Sans Pro", sans-serif;
  color: #444444;
  cursor: pointer;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #92c42e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #252a3e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 0%;
  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);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: rgba(48, 163, 75, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #0d421d;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0 0;
  position: absolute;
}
#header.header-scrolled,
#header.header-inner-pages {
  /* background: rgba(48, 163, 75, 0.9); */
  background: #fff;
  position: absolute;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# 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;
  font-weight: 500;
  color: #fff;
  white-space: normal;
  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: #47b2e4;
}
.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}
.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;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}
.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: #47b2e4;
}
.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;
}

/**
* 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: 991px) {
  .mobile-nav-toggle {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #47b2e4;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}
.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: #47b2e4;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #15993d;
  background-size: cover;
  background-position: center center;
  background-image: url("../../assets/img aset/Group\ 2909.png");
}
#hero .container {
  padding-top: 72px;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  /* color: #1b254a; */
}
#hero h2 {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 50px;
  font-size: 18px;
}
#hero .social-links {
  position: relative;
  bottom: -12rem;
}
#hero .social-links a {
  font-size: 2.1rem;
  display: inline-block;
  color: #94C52E;
  line-height: 1;
  padding: 8px 0;
  position: relative;
  bottom: 0px;
  border: 2px solid #94C52E;
  margin-right: 2rem;
  border-radius: 50%;
  text-align: center;
  width: 3.3rem;
  height: 3.3rem;
  transition: 0.3s;
}
#hero .social-links a:hover {
  background: #94c52e;
  border: 2px solid #94c52e;
  text-decoration: none;
  color: #fff;
}

#hero .hero-img img {
  width: 105%;
}
#hero .btn-get-started {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #94c52e;
}
#hero .btn-get-started:hover {
  /* background: #4d6616; */
  text-decoration: none;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 1024px) {
  #hero .social-links a {
    bottom: 0px;
  }
}
@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
  #hero .social-links a {
    bottom: 100px;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero {
    height: 110vh;
  }
  #hero .hero-img img {
    width: 100%;
    padding-top: 30px;
  }
  #hero .btn-get-started {
    font-size: 14px;
    padding: 10px 24px 11px 24px;
  }
  #hero {
    background-position: center right;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 45px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #ffffff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;

  position: relative;
  color: #414a54;
}

.section-title p {
  margin-bottom: 0;
  color: #80858c;
  width: 50%;
  display: block;
  /* font-weight: 600; */
}
@media (max-width: 780px) {
  .section-title p {
    width: 100%;
  }
}
/*--------------------------------------------------------------
# sellers
--------------------------------------------------------------*/
#top-sellers{
  background-image: url('../../assets/img aset/Path-2619.png');
  width: 100%;
  
  background-size:cover;
  background-position: center center;
}
#top-sellers .card h3 {
  color: #313B45;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#top-sellers .card h5 {
  color: #414A54;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#top-sellers p {
 font-size: large;
}
#top-sellers .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #94C52E;
}
#top-sellers .card .btn-get-started:hover {
  /* background: #4d6616; */
  text-decoration: none;
}
#top-sellers .controls .btn{
  color: #fff;
  background: #94C52E;
}
@media (max-width: 768px) {
  #top-sellers{
    background-image: url('../../assets/img aset/Path-2618.png');
  }
}


#sellers .controls-right a {
  background-color: #94c52e;
  color: #ffffff;
  padding: 2px 4px 2px 4px;
  border-radius: 3px;
}
#sellers .card h2 {
  font-size: 35px;
  font-weight: 600;
  color: #414a54;
}
#sellers .card p {
  /* font-weight: 500; */
  font-size: 16px;
}
#sellers .card .btn {
  font-size: 20px;
}
#sellers .card .price {
  font-weight: 600;
  font-size: 20px;
}
/*--------------------------------------------------------------
# why choose us?
--------------------------------------------------------------*/
.services .icon-box {
  
  padding: 30px 50px;
  transition: all ease-in-out 0.4s;
  background: rgb(255, 255, 255);
  text-align: center;
  border-radius: 4px;
}

.services .icon-box img {
  margin-bottom: 25px;
  width: 120px;
}
 
.services .icon-box h4 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
  color: #000;
  transition: ease-in-out 0.3s;
}
.services .icon-box:hover h4 {
  color: #90C330;
 }
 
.services .icon-box p {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 25px;
  font-size: 17px;
  margin-bottom: 0;
  font-weight: 500;
  color: #4f5258;
}
.services .icon-box:hover {
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# How it works 
--------------------------------------------------------------*/
.how-works .img-box {
  
  margin: 10px;
   transition: all ease-in-out 0.4s;
    
   text-align: center;
 }
 .how-works .img-box h5{
   color: #4F6174;
  font-weight: 600;
  font-size: 21px;
 }
 @media (max-width: 768px) {
   .how-works .img-box {
   
     margin: 0 -10px;
    
    }
 }
 
 .how-works .img-box img {
   
  width: 100%;
}
  
  
 .how-works .img-box:hover {
   transform: translateY(-10px);
 }

/*--------------------------------------------------------------
# Register modal
--------------------------------------------------------------*/
#register .register-block {
  padding-top: 0px;
  padding-bottom: 0px;
}
#register .register-block .sign-in-sec {
  color: #ffff;
}
#register .register-block .sign-in-sec h5 {
  margin-bottom: 40px;
}
#register .register-block .sign-in-sec p {
  margin-bottom: 30px;
}
#register .register-block .sign-in-sec button {
  border: 2px solid;
  transition: 1s;
  border-radius: 5px;
  width: 70%;
}

#register .modal-content .close {
  padding: 0px 3px;
  opacity: 1;
  color: #fff;
  background-color: red;
}
#register .card {
  border-radius: 0px;

  border: none;

  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

#register .card .card-block {
  padding: 1.25rem;
}

#register .f-80 {
  font-size: 80px;
}

#register .form-group {
  margin-bottom: 1.25em;
}

#register .form-material .form-control {
  display: inline-block;
  height: 43px;
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  padding: 9px;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #ccc;
}

#register .btn-md {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 23px;
}

#register .btn-primary {
  background-color: #4099ff;
  border-color: #4099ff;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

#register .btn {
  border-radius: 2px;
  text-transform: capitalize;
  font-size: 15px;
  padding: 10px 19px;
  cursor: pointer;
}

#register .terms-condtions {
  font-size: 10px;
}

#register .btn-md {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 23px;
}

#register .heading {
  font-size: 21px;
}

#register #infoMessage p {
  color: red !important;
}
/*--------------------------------------------------------------
# Login modal
--------------------------------------------------------------*/
#login .login-block {
  padding-top: 0px;
  padding-bottom: 0px;
}
#login .login-block .sign-in-sec {
  color: #ffff;
}
#login .login-block .sign-in-sec h5 {
  margin-bottom: 40px;
}
#login .login-block .sign-in-sec p {
  margin-bottom: 30px;
}
#login .login-block .sign-in-sec button {
  border: 2px solid;
  transition: 1s;
  border-radius: 5px;
  width: 70%;
}

#login .modal-content .close {
  padding: 0px 3px;
  opacity: 1;
  color: #fff;
  background-color: red;
}
#login .card {
  border-radius: 0px;

  border: none;

  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

#login .card .card-block {
  padding: 1.25rem;
}

#login .f-80 {
  font-size: 80px;
}

#login .form-group {
  margin-bottom: 1.25em;
}

#login .form-material .form-control {
  display: inline-block;
  height: 43px;
  width: 100%;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  padding: 9px;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #ccc;
}

#login .btn-md {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 23px;
}

#login .btn-primary {
  background-color: #4099ff;
  border-color: #4099ff;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
}

#login .btn {
  border-radius: 2px;
  text-transform: capitalize;
  font-size: 15px;
  padding: 10px 19px;
  cursor: pointer;
}

#login .terms-condtions {
  font-size: 10px;
}

#login .btn-md {
  padding: 10px 16px;
  font-size: 15px;
  line-height: 23px;
}

#login .heading {
  font-size: 21px;
}

#login #infoMessage p {
  color: red !important;
}

/*--------------------------------------------------------------
# Review section
--------------------------------------------------------------*/
#reviews .controls-right a {
  background-color: #94c52e;
  color: #ffffff;
  padding: 2px 4px 2px 4px;
  border-radius: 3px;
}

#reviews .box-top h4 {
  color: #4a5c70;
}
#reviews .box-top p {
  font-size: 18px;
  color: #6e7c8b;
  font-weight: 500;
}
#reviews .box {
  background-color: #f9fafb;
}
#reviews .box-img p {
  font-size: 10px;
}
#reviews .box-text p {
  font-size: 14px;
  color: #6e7c8b;
}
#reviews .box-text h6 {
  font-weight: 600;
  color: #4a5c70;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #3e9035;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #252a3e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #c0c1c7;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #c0c1c7;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #c0c1c7;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
}
/* #footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
} */
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #94c52e;
  color: #252a3e;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #547016;
  color: #fff;
  text-decoration: none;
}
#footer a:hover{
  text-decoration: underline;
}
#footer .footer-bottom {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
}
#footer .copyright {
  text-align: center;
}

#footer p{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 color: #ffff;
}
#footer ul{
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
 list-style: none;
 padding-left: 0px;
 line-height: 30px;
}
#footer a{
  color: #fff;
}
#footer span{
  color: #fff;
  margin-top: 40px;
}
#footer  .social-links a {
  font-size: 18px;
  display: inline-block;
  background-color: #94C52E;
  color: #111B28;
  line-height: 1;
  padding: 8px 0;
  position: relative;
  bottom: 0px;
   
 
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 35px;
  height: 35px;
  transition: 0.3s;
}
#footer  .social-links a:hover {
  background: #fff;
  color: #94C52E;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 20px;
  }
  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }
}
